根据您提供的其他信息,看起来您确实是在 Python 内部发出命令。
编辑:也许混淆的一部分来自这个词command line
。您在“Windows 命令”shell 和“Python shell”中都处于命令行。
这是我在Python shell中在命令行中得到的:
D:\Users\blabla \Desktop>python
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> python testit.py
File "<stdin>", line 1
python testit.py
^
SyntaxError: invalid syntax
>>>
或这个:
>>> os.chdir("..")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'os' is not defined
>>>
我的建议是使用该cmd
命令打开一个 Windows 命令 shell 窗口,然后python myscript.py
从那里发出你的命令。
如需更多帮助,请查看您的代码,至少查看发生错误的前几行以及确定发出 python 命令的位置。