当前位置 : 主页 > 编程语言 > python >

Python-字典(嵌套)

来源:互联网 收集:自由互联 发布时间:2022-06-15
"""字典中嵌套字典"""users = { 'wen': { 'first': 'zhou', 'last': 'wen', 'location': 'hubei' }, 'tao': { 'first': 'zhou', 'last': 'tao', 'location': 'hubei' } } for username,userinfo in users.items(): print('username:'+username) fullna
"""字典中嵌套字典"""users = {
'wen': {
'first': 'zhou', 'last': 'wen', 'location': 'hubei' }, 'tao': {
'first': 'zhou', 'last': 'tao', 'location': 'hubei' }
}

for username,userinfo in users.items():
print('username:'+username)
fullname = userinfo['first']+userinfo['last']
location = userinfo['location']
print('fullname:'+fullname)
print('location:'+location)
print('\t')
上一篇:Python学习总结(一)—— 十分钟入门
下一篇:没有了
网友评论