1. 首页
  2. 数据库
  3. 其它
  4. 快速学习 Python字典

快速学习 Python字典

上传者: 2020-12-23 02:41:08上传 PDF文件 42.28KB 热度 32次
10. 字典 在字典中,键必须不可变,所以可以用数字,字符串或元组充当,而用列表就不行。 10.1 字典创建 dict = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'} dict = {x:x+1 for x in range(10)} 10.2 字典值获取 dict['Alice'] 10.3 更新字典 dict['Alice'] = 10 10.4 删除字典元素 del dict['Alice'] del dict 10.5 字典内置函数&方法 函数 描述 实例 len(dict) 计算字典元素个数,
用户评论