最近在学Pyhton上,遇到执行.py档的问题,在爬文后已经能在
cmd上和在IDLE上用'F5'执行成功,但还是无法在交互式直译器和
IDLE上用指令“python file_name.py”执行成功。
档案位置路径"D:\Python"也加入sys.path中,但还是无法执
行成功,我试过二种不同的输入方式,一个没带路径,一个有带路径
,各别出现以下的错误讯息:
1)没带路径
>>> python test1.py
File "<stdin>", line 1
python test1.py
^
SyntaxError: invalid syntax
2)有带路径
>>> python D:\Python\test1.py
File "<stdin>", line 1
python D:\Python\test1.py
^
SyntaxError: invalid syntax
请问要如何解决?谢谢!