主頁 > 知識庫 > python命令行模式的用法及流程

python命令行模式的用法及流程

熱門標(biāo)簽:徐州天音防封電銷卡 哈爾濱外呼系統(tǒng)代理商 電話機器人適用業(yè)務(wù) 鄭州智能外呼系統(tǒng)運營商 獲客智能電銷機器人 不錯的400電話辦理 南昌辦理400電話怎么安裝 佛山防封外呼系統(tǒng)收費 湛江電銷防封卡

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)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 對命令行模式與python交互模式介紹

標(biāo)簽:安康 呂梁 紹興 蕪湖 蘭州 懷化 吉安 廣西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python命令行模式的用法及流程》,本文關(guān)鍵詞  python,命令行,模式,的,用法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python命令行模式的用法及流程》相關(guān)的同類信息!
  • 本頁收集關(guān)于python命令行模式的用法及流程的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章