范例:
name = 'Crossin'
myVar = 123
price = 5.99
visible = True
“=”的作用是把右邊的值賦予給左邊的變量。
python中有四種較為常見的數據類型:
1、字符串 - 表示一串字符,需要用''或""引起來
2、整數
3、浮點數 - 就是小數
4、bool(布爾) - 這個比較特殊,是用來表示邏輯“是”“非”的一種類型,它只有兩個值,True和False。
代碼范例:
print("who do you think i am?") input() print("how old are you?") input() print("oh yes") a=3<5 print(a) b=3.12 print(b) c='jfaf' print(c)
print(4<3) 運行結果: who do you think i am? fasdf oh yes True 3.12 jfaf
false
常見的邏輯運算符:
>:大於
<:小於
>=:大於等於
<=:小於等於
==:等於。比較兩個值是否相等。之所以用兩個等號,是為了和變量賦值區分開來。
!=:不等與
not:邏輯“非”。如果x為True,則not x為False
and:邏輯“與”。如果x為True,且y為True,則x and y為True
or:邏輯“或”。如果x、y中至少有一個為True,則x or y為True
范例:
print(4<3) print(1<=1) print(0 or 1) print(not 1) 運行結果: False True 1 False