執行指令碼時
python hello.py
python的檔案型別
• 源**
python源**的檔案以'python'為副檔名,由python程式解釋,不需要編譯;
• 位元組**
python原始檔經編譯後生成擴充套件名為"pyc"的檔案
編譯方法 import py_compile
py_compile.compile("hello.py)
• 優化**
經過優化的原始檔,擴充套件名為".pyo"
python -o -m py_compile hello.py
注:python文件是這樣描述的:這個優化沒有多大作用,只是移除了斷言。 至於速度,執行幾乎一樣。
1.python指令碼檔案的標準寫法
vim hello.py
#!/usr/bin/python
print "hello world"
chmod +x hello.py
./hello.py
2.編譯python指令碼(源**編譯後要比解釋執行要快)
python很多功能通過模組完成,模組中會有很多方法可以直接使用
vim com.py
import py_compile
py_compile.compile('hello.py')
python com.py 執行後生成hello.pyc檔案即編譯後的檔案
python hello.pyc 即可執行該檔案
3.優化**
python -o -m py_compile hello.py
python hello.pyo
環境搭建 二 Python環境搭建
工欲善其事,必先利其器 要想玩轉python,我們首先需要搭建一套可使用且方便的環境。對於初學者,笨飯糰建議使用 anaconda anaconda 簡介anaconda是python的乙個科學計算發行版,內建了數百個python經常會使用的庫,包括做機器學習或資料探勘的庫。anaconda提供了乙...
Python 環境搭建
本文將介紹如何在本地搭建python開發環境,python可應用於多平台包括 linux 和 mac os x。你可以通過終端視窗輸入 python 命令來檢視本地是否已經安裝python以及python的安裝版本。python最新原始碼,二進位制文件,新聞資訊等可以在python的官網檢視到 py...
Python 環境搭建
參考 動態載入庫 方法一 import sys your path 方法二 在python安裝目錄下的 lib site packages資料夾中建立乙個.pth檔案,內容為自己寫的庫路徑。示例如下 正規表示式 參考 python學習 第三方庫 tools pip的安裝 第三方庫 有whl檔案 比如...