- 名稱的第一個字元,不可以使用數字!
- 底線開頭的變數名稱,將被視為有特殊用途!
- 變數名稱可用大小寫字母、數字、底線!
- 不可以使用 Python 保留字!
-
變數值指派方式:
變數名稱 = 資料值
快速測試:
-
使用互動式指令:
#python3 >>> a = 123 >>> print(a) 123 >>> type(a) <class 'int'> >>> a = 1.234 >>> print(a) 1.234
-
使用 Python 檔案:
#vim Hello.py (寫入下列兩行:) test_sentence = "Hello World" print(test_sentence) (存檔後,執行下列指令:) #python3 Hello.py Hello World