从python脚本打开和读取.txt文件

时间:2017-05-26 16:51:53

标签: python

from sys import argv
script,filename=argv
txt=open(filename)
print("here's your file %r:\n" % filename)
print txt.read()

print("type the filename again:")
file_again=input("@")
txt_again=open(file_again)
print txt_again.read()

我已经使用过这段代码,而且它显示的错误就像附在图片中一样。

我该怎么办?

enter image description here

1 个答案:

答案 0 :(得分:1)

您正在尝试执行.txt文件。您应该像这样运行脚本:

C:\path\to\python.exe my_script.py path\to\your\file.txt

my_script.py应该包含您的代码。