python文件編寫好後如何實踐

腳本式編程python

將以下代碼拷貝至 hello.py文件中:編程


print("Hello, Python!");


經過如下命令執行該腳本:ide


$ python ./hello.pyhello,python


利用Python自帶的IDELspa

python 自帶了一款 IDE,叫作 IDLE。blog


v2-577901e9efd143405ad4f7a87983ce1b_720w.png


內容擴展:get

Python實踐中pyc文件源碼

pyc文件簡介it

.pyc文件包含python源文件編譯出來的字節碼。編譯

Python解析器在加載.py以前先嚐試加載.pyc文件,若是它是最新的,那麼就不用再次編譯Python源碼文件了。class

.pyc文件被刪掉也沒有什麼影響

.pyc文件並不大,由於能節省python程序的加載時間因此會對總體執行時間的縮短有所幫助

生成pyc文件的方法

直接運行 python -m helloworld.py

使用py_compile生成pyc文件 python -c "import py_compile; py_compile.compile('helloworld.py')"

針對目錄下全部的py文件進行編譯


import compileallcompileall.compile_dir(r'/path')


到此這篇關於python文件編寫好後如何實踐的文章就介紹到這了,更多相關python文件怎麼實踐內容請搜索之前的文章或繼續瀏覽下面的相關文章但願你們之後多多支持!

相關文章
相關標籤/搜索