您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Python腳本的執行方式有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1.交互模式下執行 Python,這種模式下,無需創建腳本文件,直接在 Python解釋器的交互模式下編寫對應的 Python 語句即可。
1)打開交互模式的方式:
Windows下:
在開始菜單找到“命令提示符”,打開,就進入到命令行模式:
在命令行模式輸入: python 即可進入 Python 的交互模式
Linux 下:
直接在終端輸入 python,如果是按裝了 python3 ,則根據自己建的軟連接的名字進入對應版本的 Python 交互環境,例如我建立軟連接使用的 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)進入腳本文件所在路徑下執行
C:\Windows\System32>G: G:\test>python hello.py Hello World!
2)給出腳本文件的完整路徑
C:\Windows\System32>python G:\test\hello.py Hello World!
3.在腳本文件中指定 python 程序所在路徑,修改文件為可執行文件,然后直接運行文件
Linux下:
1)修改文件,添加 #!/usr/bin/python3
[Vicky@localhost code]$ vi hello.py [Vicky@localhost code]$ cat hello.py #!/usr/bin/python3 print("Hello World!")
2)修改文件權限,添加可執行權限
[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!
此種方式執行的時候,一定要在腳本文件中指定解釋器,否則無法直接運行腳本文件
[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: 未預期的符號 `"Hello World!"' 附近有語法錯誤 ./hello.py:行1: `print("Hello World!")'
4.交互模式和腳本文件方式的比較
1)在交互模式下,會自動打印出運算結果,而通過腳本文件的方式不會
交互模式:
[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 函數進行打印。
[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)在交互模式下,每次輸入的語句不會被保存,退出交互環境之后即消失,但是通過腳本文件我們可以保存我們寫過的所有語句。所以通常都是通過編寫 腳本文件的方式來編寫 Python 代碼。
注意:在編寫腳本文件的時候不要使用 word 和 windows 自帶的筆記本,因為他們在保存的時候會保存為 utf-8 BOM 格式,這會導致腳本執行錯誤。可以使用 sublime,editplus,notepad++
關于“Python腳本的執行方式有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。