在 python 中,變數不用宣告,也沒有範圍 (除了 bool 型態以外),這對程式
設計師而言,真是天大的福音。但是不要忘記精確度,有些數字會被精確度
破壞,爾後會在後面舉範例說明。
Python 資料型態
功能說明
指令
範例
變數命名
開頭字母必須大小寫 A - Z 、 a - z 或底線 _
第二字母以後,除了前開 大小寫字母、 底線外,還可以加入數字
大小寫有別
正確:x2、_yT、S47、_init_
錯誤:2x、 Me@、psxt
關鍵字
以下為 python 關鍵字應避開
and
as
assert
break
class
continue
def
del
dir
elif
else
except
False
finally
float
for
from
global
if
import
in
is
lambda
list
None
nonlocal
not
or
pass
raise
return
str
True
try
tuple
while
with
yield
內建函數名稱也應避免。