我運行此程序:刪除引號
f = open("animals.txt", "r")
g = f.read()
g1 = g.split(',') #turning the file into list
print g1
而且我想這個出來:
['ELDEN', 'DORSEY', 'DARELL', 'BRODERICK', 'ALONSO']
相反,我得到這個:
['"ELDEN"', '"DORSEY"', '"DARELL"', '"BRODERICK"', '"ALONSO"']
有誰知道如何刪除內部引號
此外,當您完成該操作時,您目前沒有關閉文件。您需要在最後執行'f.close()'或使用[with-statement]打開文件(https://docs.python.org/3/reference/compound_stmts.html#the-with-statement)讓它自動關閉。 – iCodez 2015-02-06 23:33:12