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()
我已经使用过这段代码,而且它显示的错误就像附在图片中一样。
我该怎么办?
答案 0 :(得分:1)
您正在尝试执行.txt
文件。您应该像这样运行脚本:
C:\path\to\python.exe my_script.py path\to\your\file.txt
my_script.py
应该包含您的代码。