当我运行时:
with open(cs, 'r') as f :
Candidates = [line.strip() for line in f]
我收到错误:
TypeError: invalid file: ['bob', 'john', 'nancy', 'johnnie', 'sam']
这似乎做了正确的事情,因为它正在打开文件' cs'并将值放入该字符串中。我看到另一个说法去掉了' r'会解决它,但它没有工作
先谢谢你的帮助
答案 0 :(得分:2)
cs
的值为['bob', 'john', 'nancy', 'johnnie', 'sam']
'cs'
(用引号括起来)或str