1. 程式人生 > >python 基礎 字典 增刪改查

python 基礎 字典 增刪改查

() test bsp 返回 one false ont val als

content = {"name":"wd","pc":{"phone":111111,"age":18},"woniu":["122222",18]}

  • content[‘kk‘] = ‘test‘

  • content.pop("kk") 註意 列表有序,可以直接pop()

  • content[‘name‘] = ‘lll‘ 直接對字符串內容賦值
  • content[‘woniu‘][0] = ‘33333‘ 列表賦值
  • content[‘pc‘][‘age‘] = 20 字典賦值
  • len(conent)

  • content.keys()
  • content.values()
  • content.items()
  • content.items()
    Out[11]:
    [(‘pc‘, {‘age‘: 18, ‘phone‘: 111111}),
    (‘woniu‘, [‘122222‘, 18]),
    (‘name‘, ‘wd‘)]

  • content.get("ndjandjs",‘name‘) 如果ndjandjs不存在則使用name 返回值為true 和false
  • content.has_key("name")
  • 循環

python 基礎 字典 增刪改查