Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News Sign UpSign In
| Download
Views: 38
f = open ('sample.txt', 'w') f.write('ZK is handsome!') f.close() f = open('sample.txt', 'r') for line in f: print line
ZK is handsome!