我将以下数字保存为名为sample.txt
的单独文本文件:1, 2, 3, 4, 5, 6
现在我想从单独的文件中导入这些值,并将它们保存为python中的列表。我使用以下命令:
def imported_numbers(filename):
with open(filename, 'r') as f: #open the file
list = f.readlines() #put the lines to a variable (list).
print(list)
imported_number('sample.txt')
但是,在python中运行此代码时,我收到以下错误消息:
"NameError: name 'sample' is not defined".
有没有人知道我的代码可能有什么问题?我将文本文件放在与python文件相同的文件夹中。
提前致谢。
/亚历