您现在的位置是:课程教程文章

python命令行模式的使用流程

2023-12-13 23:17课程教程文章 人已围观

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电脑。

课程教程:python命令行模式的使用流程

上一篇:python算术运算符的扩展功能

下一篇:没有了