有人可以给我一些指导,告诉我如何在我的python代码中获取文本文件的内容,而无需在另一个窗口中打开文本文件? 请指出我应该如何做到正确的方向(不需要解决方案)
答案 0 :(得分:0)
file = open("your_file.txt", "r")
file.read()
答案 1 :(得分:0)
with open(workfile, 'r') as f:
for line in f:
print line
如果不使用上下文管理器(with语句),则需要显式调用f.close(),例如:
f = open('workfile', 'r')
line = f.readline()
print line
f.close()