1、使用cmd打開命令行窗口。
2、在輸入python時,進入python交互模式。
3、輸入exit(),退出交互模式,在命令行模式下運行.py程序。
實例
C:\Users\86178>python
Python 3.8.3 (default, Jul 2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> edit
Traceback (most recent call last):
File "stdin>", line 1, in module>
NameError: name 'edit' is not defined
>>> exit()
C:\Users\86178>python
Python 3.8.3 (default, Jul 2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> hello.py
Traceback (most recent call last):
File "stdin>", line 1, in module>
NameError: name 'hello' is not defined
>>> exit()
C:\Users\86178>python hello.pu
python: can't open file 'hello.pu': [Errno 2] No such file or directory
C:\Users\86178>python hello.py
python: can't open file 'hello.py': [Errno 2] No such file or directory
C:\Users\86178>cd /d
文件名、目錄名或卷標(biāo)語法不正確。
C:\Users\86178>cd /d D:
D:\&;python hello.py
hello
D:\&;python
Python 3.8.3 (default, Jul 2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> hello.py
Traceback (most recent call last):
File "stdin>", line 1, in module>
NameError: name 'hello' is not defined
>>>
知識點擴充:
命令行模式與python交互模式
1.在命令行模式下,可以執(zhí)行 python 進入 Python 交互式環(huán)境,也可以執(zhí)
行 python hello.py 運行一個.py 文件。
2.在 Python 交互式環(huán)境下,只能輸入 Python 代碼并立刻執(zhí)行。
3.Python 交互式環(huán)境會把每一行 Python 代碼的結(jié)果自動打印出來,但是,直接運行 Python 代碼卻不會。
到此這篇關(guān)于python命令行模式的用法及流程的文章就介紹到這了,更多相關(guān)python命令行模式的使用流程內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!