tup = ((2, 3), ['比亞迪', '賓士'], '李白', '杜甫', '奧迪')
# 1、查詢所有的車名 然後列印出來
print(tup[1][1],tup[1][0],tup[-1])
# 2、給['比亞迪', '賓士']新增乙個 「五菱巨集光」
print(tup)
age_list = [25, 88, 99, 60, 12, 1, 32, 14, 19, 34, 55]
# 將年齡小於12的存入乙個列表,
new_list=
for i in age_list:
if i<12 :
print(new_list)
# 將將年齡大於等於12 小於18存入乙個列表
new_list1=
for j in age_list:
if j>=12and j<18:
print(new_list1)
# 將年齡大於等於18 存入乙個列表
new_list2=
for k in age_list:
if k>18:
print(new_list2)
dct =
# 新增 『劉備』進入我們的['張飛','關羽'] 新增62到[45, 60]
print(dct)
print(dct)
# 修改裡面的張飛 為諸葛亮
dct.get('name')[0]="諸葛亮"
print(dct)
# 刪除 掉age鍵
dct.pop('age')
print(dct)
# 查詢出關羽
print(dct.get('name')[1])
列表 元組 字典
列表 列表的定義 1 list 列表 是 python 中使用 最頻繁 的資料型別,在其他語言中通常叫做 陣列 2 專門用於儲存 一串 資訊 3 列表用 定義,資料 之間使用 分隔 4 列表的 索引 從 0 開始 5 索引 就是資料在 列表 中的位置編號,索引 又可以被稱為 下標 6 注意 從列表中...
列表 元組 字典
列表1.1 列表的定義.注意 從列表中取值時,如果 超出索引範圍,程式會報錯 2 列表常用操作 在 ipython3 中定義乙個 列表,例如 name list 輸入 name list.按下 tab 鍵,ipython 會提示 列表 能夠使用的 方法 1 元組的定義 tuple 元組 與列表類似,...
列表 元組 字典
變數 值1,值2 值n 變數 list num list 1 2,3 2 print num list num list 1 2,3 count num list.count 2 print count num list 1 2,3 num list2 4 2,3 num list.extend n...