1、使用cmd打开命令行窗口。
2、输入python时,进入python交互模式。
3、输入exit(),退出交互模式,在命令行模式下运行.py程序。
实例
C:\Users\86178>python Python3.8.3(default,Jul22020,17:30:36)[MSCv.191664bit(AMD64)::Anaconda,Inc.onwin32 Type"help","copyright","credits"or"license"formoreinformation. >>>edit Traceback(mostrecentcalllast): File"<stdin>",line1,in<module> NameError:name'edit'isnotdefined >>>exit() C:\Users\86178>python Python3.8.3(default,Jul22020,17:30:36)[MSCv.191664bit(AMD64)::Anaconda,Inc.onwin32 Type"help","copyright","credits"or"license"formoreinformation. >>>hello.py Traceback(mostrecentcalllast): File"<stdin>",line1,in<module> NameError:name'hello'isnotdefined >>>exit() C:\Users\86178>pythonhello.pu python:can'topenfile'hello.pu':[Errno2]Nosuchfileordirectory C:\Users\86178>pythonhello.py python:can'topenfile'hello.py':[Errno2]Nosuchfileordirectory C:\Users\86178>cd/d 文件名、目录名或卷标语法不正确。 C:\Users\86178>cd/dD: D:\>pythonhello.py hello D:\>python Python3.8.3(default,Jul22020,17:30:36)[MSCv.191664bit(AMD64)::Anaconda,Inc.onwin32 Type"help","copyright","credits"or"license"formoreinformation. >>>hello.py Traceback(mostrecentcalllast): File"<stdin>",line1,in<module> NameError:name'hello'isnotdefined >>>
以上是python命令行模式的使用过程,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。