Zuora interview question

Implement cat in Python.

Interview Answers

Anonymous

May 14, 2015

Read from input, open the file, read.

1

Anonymous

May 25, 2016

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

1