變數
一個變數儲存一個值。
範例
message = "Hello Python world!" print(message)
一個變數儲存一個值。你可以在任何時候改變這個值。
message = "Hello Python world!" print(message) message = "Python is my favorite language!" print(message)
命名規則
1.變數名稱只能包含字母,數字,底線。且只能以字母或底線開頭。
2.空格不允許出現在變數名稱中。
3.不能用Python關鍵字當變數名稱。
4.變數名應當是有意義的。不能過短或過長。例如:mc_wheels 就比 wheels 和 number_of_wheels_on_a_motorycle 好。
5.小心使用小寫的 l 和大寫的 O 。它們容易和1和0混淆。
NameError
NameError 是常見的變數錯誤。仔細閱讀下述程式碼,找出哪裡出錯了:
message = "Thank you for sharing Python with the world, Guido!" print(mesage)
這個錯誤是由於變數前後不一致導致的。我們只要保證變數名前後一致就能避免這個錯誤。如下圖所示:
message = "Thank you for sharing Python with the world, Guido!" print(message)
以上是python怎麼定義變數的詳細內容。更多資訊請關注PHP中文網其他相關文章!