Frage im Vorstellungsgespräch bei Zuora

Implement cat in Python.

Antworten zu Vorstellungsgespräch

Anonym

14. Mai 2015

Read from input, open the file, read.

1

Anonym

25. Mai 2016

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

1