mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 22:03:03 +00:00
15 lines
186 B
Python
15 lines
186 B
Python
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)
|