I tried
with zipfile.ZipFile("5.csv.zip", "r") as zfile:
for name in zfile.namelist():
with zfile.open(name, 'rU') as readFile:
line = readFile.readline()
print(line)
split = line.split('')
it answers:
b'$0.01822111
'
Traceback (most recent call last)
File "zip.py", line 6
split = line.split('')
TypeError: Type str doesn't support the buffer API
How to open the text file as unicode instead of as b
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…