變量名必須是大小寫英文、數字和_的組合,且不能用數字開頭
### 數據類型轉換
~~~
>>> int('123')
123
>>> int(12.34)
12
>>> float('12.34')
12.34
>>> str(1.23)
'1.23'
>>> str(100)
'100'
>>> bool(1)
True
>>> bool('')
False
~~~
~~~
算術運算符
+,-,*,/,%,**
~~~
~~~
比較運算符
==,!=,>,<
~~~
~~~
邏輯運算符
and,or , not
~~~
~~~
成員運算符
in , not in
~~~
~~~
身份運算符
is, is not
~~~
~~~
位運算符
&,|, ^,~,
~~~