def organize_data(location='G:\pythonFiles\problem 22.txt'):
with open(location) as f:
name_string = f.read().replace('\n', '')
name_string.replace('"', '')
names = name_string.split(',')
return names
print organize_data()
這似乎是replace
方法心不是工作全部刪除引號,因爲有或沒有它即時得到相同的結果:['"MARY"', '"PATRICIA"', '"LINDA"', '"BARBARA"',.....]
從一個文本字符串
如何刪除所有"
並返回像列表即:['MARY', 'PATRICIA', 'LINDA', 'BARBARA',.....]
``