会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
凌风子
博客园
首页
新随笔
联系
订阅
管理
2019年6月23日
Python 访问字典(dictionary)中元素
摘要: 访问python字典中元素的几种方式 一:通过“键值对”(key-value)访问: print(dict[key]) dict = {1: 1, 2: 'aa', 'D': 'ee', 'Ty': 45} print(dict['D']) 输出: ee dict.get(key,[default]
阅读全文
posted @ 2019-06-23 23:24 凌风子
阅读(61357)
评论(0)
推荐(2)
编辑