Python 介紹
Python 是一種通用的計算機程式語言。
本課程適用於 Python 2 和 Python 3。
下載 Python
要執行 Python 程式碼,你需要以下程式之一:
僅適用於終端: Apple Mac OS X , Microsoft Windows , Linux / UNIX
執行 Python 程式碼
python 程式應儲存為副檔名為.py 的檔案。
試試這段程式碼:
print("Hello World!")
print("This is a Python program.")
預期輸出:
Hello World!
This is a Python program
如果你使用直譯器使用:
python program.py