mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 22:03:03 +00:00
All the previous files
This commit is contained in:
+14
@@ -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)
|
||||
Reference in New Issue
Block a user