Zuora interview question

Implement cat in Python.

Interview Answers

Anonymous

14 May 2015

Read from input, open the file, read.

1

Anonymous

25 May 2016

#Python Solution import sys for line in open(sys.argv[1],'r'): print(line)

1