暂无 |

字典

字典一个一个非常好用的方法get ,如果在字典中找不到键值则返回第二参数当做默认值
pairs = {1: "apple",
  "orange": [2, 3, 4], 
  True: False, 
  None: "True",
}

print(pairs.get("orange"))
print(pairs.get(7))
print(pairs.get(12345, "不在字典中") 
结果
>>>
[2, 3, 4]
None
不在字典中
>>>

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论