python 學習筆記03

2022-09-04 19:09:11 字數 800 閱讀 6518

列表 

元組()

元組建立之後,不能修改

可以儲存不同型別的資料

info_tuple = ("zhangsan", 18, 1.75,"zhangsan")

print(info_tuple[0])

print(info_tuple.count("zhangsan"))

格式化字串 拼接生成新的字串

print("%s 的年齡是 %d ,身高是 %.2f" % info_tuple)

info_str = "%s 的年齡是 %d ,身高是 %.2f" % info_tuple

print(info_str)

字典 {}

列表是有序的,字典是無序的

key - value:用 : 分割

鍵必須是唯一的,但鍵必須是不可變的,如字串,數字

值 可以去任何資料型別

# 統計字典數量

print(len(xiaoming))

# 合併

temp_dict =

xiaoming.update(temp_dict)

print(xiaoming)

# 清空

字串

Python學習筆記03

1.變數的型別取決於後面的值 2.判斷變數的型別 number 10 print type number 3.變數的宣告 變數名 值 起變數名規則 不能數字開頭 有字母 數字 下劃線開頭 不能使用關鍵字 false none true and as assert async await break ...

PYTHON學習筆記03

加入購物車,付款,修改收貨位址.裝飾器多用於判斷使用者的登入狀態 示例 用函式a作為引數,函式b接收函式a作為引數,要有閉包的特點 def test print test def func f f test print f f 呼叫test print func func test test fun...

學習《流暢的Python學習》 筆記03

2.8.1 用bisect來搜尋 import bisect import sys haystack 1 4,5 6,8 12,15 20,21 23,23 26,29 30 needles 0 1,2 5,8 10,22 23,29 30,31 row fmt defdemo bisect fn ...