這篇文章將為大家詳細講解有關(guān)Python腳本的執(zhí)行方式有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了沐川免費建站歡迎大家使用!1.交互模式下執(zhí)行 Python,這種模式下,無需創(chuàng)建腳本文件,直接在 Python解釋器的交互模式下編寫對應(yīng)的 Python 語句即可。
1)打開交互模式的方式:
Windows下:
在開始菜單找到“命令提示符”,打開,就進入到命令行模式:
在命令行模式輸入: python 即可進入 Python 的交互模式
Linux 下:
直接在終端輸入 python,如果是按裝了 python3 ,則根據(jù)自己建的軟連接的名字進入對應(yīng)版本的 Python 交互環(huán)境,例如我建立軟連接使用的 python3,這輸入 python3。
2)退出交互模式,直接輸入 exit() 即可。
Windows下:
Linux 下:
3)在交互模式下輸出: Hello World!
Windows:
Linux:
2.通過腳本輸出
通過文本編輯器,編寫腳本文件,命名為 hello.py,在命令行模式下輸入 python hello.py 即可
Windows:
Linux:
[Vicky@localhost code]$ touch hello.py [Vicky@localhost code]$ vi hello.py [Vicky@localhost code]$ python3 hello.py Hello World!
這種方式,要注意腳本文件所在路徑,如果當前工作路徑和腳本文件不在同一路徑下,則要進入 腳本文件所在路徑,或者給出腳本文件的完整路徑。
1)進入腳本文件所在路徑下執(zhí)行
C:\Windows\System32>G: G:\test>python hello.py Hello World!
2)給出腳本文件的完整路徑
C:\Windows\System32>python G:\test\hello.py Hello World!
3.在腳本文件中指定 python 程序所在路徑,修改文件為可執(zhí)行文件,然后直接運行文件
Linux下:
1)修改文件,添加 #!/usr/bin/python3
[Vicky@localhost code]$ vi hello.py [Vicky@localhost code]$ cat hello.py #!/usr/bin/python3 print("Hello World!")
2)修改文件權(quán)限,添加可執(zhí)行權(quán)限
[Vicky@localhost code]$ chmod u+x hello.py [Vicky@localhost code]$ ls -la hello.py -rwxrw-r--. 1 Vicky Vicky 41 10月 19 15:40 hello.py
3)運行
[Vicky@localhost code]$ ./hello.py Hello World!
此種方式執(zhí)行的時候,一定要在腳本文件中指定解釋器,否則無法直接運行腳本文件
[Vicky@localhost code]$ cat hello.py print("Hello World!") [Vicky@localhost code]$ ls -la hello.py -rwxrw-r--. 1 Vicky Vicky 22 10月 19 15:40 hello.py [Vicky@localhost code]$ ./hello.py ./hello.py:行1: 未預(yù)期的符號 `"Hello World!"' 附近有語法錯誤 ./hello.py:行1: `print("Hello World!")'
4.交互模式和腳本文件方式的比較
1)在交互模式下,會自動打印出運算結(jié)果,而通過腳本文件的方式不會
交互模式:
[fanya@localhost code]$ python3 Python 3.6.5 (default, Oct 19 2018, 10:46:59) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> 100+200 300 >>> exit()
腳本文件:
[fanya@localhost code]$ vi cal.py [fanya@localhost code]$ cat cal.py 100+200 [fanya@localhost code]$ python3 cal.py [fanya@localhost code]$
可見沒有任何輸出,此時要想輸出,必須使用 print 函數(shù)進行打印。
[fanya@localhost code]$ vi cal.py [fanya@localhost code]$ cat cal.py print(100+200) [fanya@localhost code]$ python3 cal.py 300 [fanya@localhost code]$
2)在交互模式下,每次輸入的語句不會被保存,退出交互環(huán)境之后即消失,但是通過腳本文件我們可以保存我們寫過的所有語句。所以通常都是通過編寫 腳本文件的方式來編寫 Python 代碼。
注意:在編寫腳本文件的時候不要使用 word 和 windows 自帶的筆記本,因為他們在保存的時候會保存為 utf-8 BOM 格式,這會導(dǎo)致腳本執(zhí)行錯誤??梢允褂?sublime,editplus,notepad++
關(guān)于“Python腳本的執(zhí)行方式有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。