最近在學Python,有許多的資料類型是JS沒有的,覺得很有趣
▌基本資料類型
- 字串:”123”
- 數字:345
- 可變列表List:[1,3,4]
- 不可變列表Tuple:(1,3,4)
- 集合Set:{1,3,4}
- 字典:{“apple”:”蘋果”}
- 布林:True/False
▌字串
- a*3 //可以重複字串
- a+a //可以相加字串
- a[0] //可以取出第一個字
- “”” 可以換行 “”” //可以換行
a="hello"*3 // hellohellohello
a="hello"+'world' //helloworld
▌計算
有小數計算:3/6 //0.5
無小數計算:3/6 // 0
餘數計算:7%3 // 1
無小數計算:3/6 // 0
餘數計算:7%3 // 1
▌字典
- 擁有key-value
a={"a":"apple","o":"orange"}
print(a[a]) // apple
沒有留言:
張貼留言