[问题] 用dictionary存取线上资料

楼主: seeboobs (看奶)   2015-05-31 21:55:23
我们老师出了一个功课要我们存取空污资料
我打的程式码长这样
import urllib2
rsp = urllib2.urlopen(\
'http://opendata.epa.gov.tw/ws/Data/AQX/?format=csv&ndctype=CSV&ndcnid=6074')
data = rsp.read()
csvdata=str(data).decode('utf8')
print csvdata
aircd_dicts = {}
for line in csvdata:
SiteName,Country,PSI=line[:-1].split(",")
aircd_dicts[SiteName]=[Country,int(PSI)]
print aircd_dicts
后来发现有问题把下面dictionary的部分简化成这样找问题
for line in csvdata:
print line
发现这样跑出来的资料全部都会变成直的
像是这样
S
i
t
e
N
a
m
e
,
C
o
u
n
t
y
,
P
S
I
请问要怎么解决呢
作者: alibuda174 (阿哩不达)   2015-05-31 22:01:00
print line,
楼主: seeboobs (看奶)   2015-05-31 22:03:00
太感谢大大了我还想问+,的用意是什么刚学python很多问题
作者: shunyi (shunyi)   2015-05-31 22:27:00

Links booklink

Contact Us: admin [ a t ] ucptt.com