python中變數的命名及詳解

farsun發表於2021-09-11

python中變數的命名及詳解

變數

一個變數儲存一個值。

示例

message = "Hello Python world!"
print(message)

一個變數儲存一個值。你可以在任何時候改變這個值。

message = "Hello Python world!"
print(message)

message = "Python is my favorite language!"
print(message)

命名規則

變數名只能包含字母,數字,下劃線。且只能以字母或下劃線開頭。

空格不允許出現在變數名中。

不能用 Python 關鍵字作為變數名。

變數名應當是有意義的。不能過短或過長。例如:mc_wheels 就比 wheels 和 number_of_wheels_on_a_motorycle 好。

小心使用小寫的 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)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4289/viewspace-2837416/,如需轉載,請註明出處,否則將追究法律責任。

相關文章