字典的学习3——嵌套——Python编程从入门到实践

嵌套 ?

一系列字典存储在列表or列表作为值存储在字典or字典中套字典


 1. 字典列表
alien_0 = {'color': 'green', 'points': 5}
alien_1 = {'color': 'yellow', 'points': 10}
alien_2 = {'color': 'red', 'points': 15}
aliens = [alien_0, alien_1, alien_2]
for alien in aliens:
    print(alien)

这样手动一个一个输入太费劲,让其自动生成多个:

aliens = []
# 生成30个
for alien_number in range(30):
    new_alien = {'color': 'green', 'points': 5, 'speed': 'slow'}
    aliens.append(new_alien)
# 显示前5个
for alien in aliens[:5]:
    print(alien)

但此时生成的数量是很多了,可都具有一样的特征,怎么办呢?

for alien in aliens[0:3]:
if alien['color'] == 'green':
alien['color'] = 'yellow'
alien['speed'] = 'medium'
alien['point'] = 10
elif alien['color'] == 'yellow':
alien['color'] = 'red'
alien['speed'] = 'fast'
alien['point'] = 15

通过切片修改部分外星人的特征,就可生成具有不同特征的外星人。

2. 在字典中存储列表
# 存储披萨的信息
pizza = {
    'crust': 'thick',
    'toppings': ['mushrooms', 'extra cheese'],
}
# 概述所点的披萨
print("You ordered a " + pizza['crust'] + "-crust pizza with the following toppings:")
for topping in pizza['toppings']:
    print(topping)

 多个键值对时:

favorite_languages = {
    'jen': ['python', 'ruby'],
    'sarah': ['c'],
    'edward': ['ruby', 'go'],
    'phil': ['python', 'haskell'],
}
for name, languages in favorite_languages.items():
    print("\n" + name.title() + "'s favorite languages are: ")
    for language in languages:
        print("\t" + language.title())

运行结果:

Jen's favorite languages are: 
    Python
    Ruby

Sarah's favorite languages are: 
    C

Edward's favorite languages are: 
    Ruby
    Go

Phil's favorite languages are: 
    Python
    Haskell

但有的键只对应一个值,用are表示就有点不妥,可以对此作进一步改进:

for name, languages in favorite_languages.items():
    if len(languages) == 1:
        print("\n" + name.title() + "'s favorite languages is " + languages[0].title() + ".")    # 打印出一个键对应一个值的情况
    else:
        print("\n" + name.title() + "'s favorite languages are: ")
        for language in languages:
            print("\t" + language.title())
3. 字典中存储字典
# 存储两个用户各自的一些信息
users = {
    'mary': {
        'first': 'albert',
        'last': 'mary',
        'location': 'princeton',
    },
    'bary': {
        'first': 'maria',
        'last': 'bary',
        'location': 'paris',
    }
}
for username, user_info in users.items():
    full_name = user_info['first'] + ' ' + user_info['last']
    location = user_info['location']

    print("\nUsername: " + username)
    print('\tFull name: ' + full_name.title())
    print('\tLocation: ' + location.title())

运行结果:

Username: mary
    Full name: Albert Mary
    Location: Princeton

Username: bary
    Full name: Maria Bary
    Location: Paris

 

转载于:https://www.cnblogs.com/shirley-yang/p/11067183.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值