All the previous files

This commit is contained in:
bendtherules
2014-02-05 10:44:04 +05:30
commit 12135f9a60
160 changed files with 8827 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import csv
c=[89,25]
a=["hi, there ",509,c]
f=open("a.csv","w")
w=csv.writer(f)
w.writerow(a)
f.close()
f=open("a.csv","r")
r=csv.reader(f)
for c in r:
d=c;
print(type(c))
print(c)