[Python] Python 3 Web Guide – 開發環境與語言架構指南

Intro Python官網 各平台依照指示下載安裝即可。Windows環境下指令為py。 Ecosystem – 生態系 語言特性 Data Structures python / py 依照環境及版本,直接於指令列執行Python程式碼檔案: $ echo "print('Hello World')" > hello-world.py $ python hello-world.py $ python3 hello-world.py $ py hello-world.py pip PyPI · The Python Package Index Pip為Python套件管理器,可以直接官網下載執行get-pip.py自動安裝,或者套件安裝如APT: $ apt install python-pip […]