zoukankan      html  css  js  c++  java
  • Python编程 从入门到实践-6字典下

    笔记出处(学习UP主视频记录) https://www.bilibili.com/video/av35698354?p=13

    6.4 嵌套

    6.4.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)

    {'color': 'green', 'points': 5}
    {'color': 'yellow', 'points': 10}
    {'color': 'red', 'points': 15}

    # 创建一个外星人空列表
    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)
    print('...')
    
    # 显示创建了多少个外星人
    print("Total number of aliens: " + str(len(aliens)))

    {'color': 'green', 'points': 5, 'speed': 'slow'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    ...
    Total number of aliens: 30

    aliens = []
    
    for alien_number in range(30):
        new_alien = {'color': 'green', 'points': 5, 'speed': 'slow'}
        aliens.append(new_alien)
    
    for alien in aliens[0:3]:
        if alien['color'] == 'green':
            alien['color'] = 'yellow'
            alien['speed'] = 'medium'
            alien['points'] = 10
    
    for alien in aliens[:5]:
        print(alien)
    print("...")
    
    print("Total number of aliens: " + str(len(aliens)))

    {'color': 'yellow', 'points': 10, 'speed': 'medium'}
    {'color': 'yellow', 'points': 10, 'speed': 'medium'}
    {'color': 'yellow', 'points': 10, 'speed': 'medium'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    {'color': 'green', 'points': 5, 'speed': 'slow'}
    ...
    Total number of aliens: 30

    6.4.2 在字典中存储列表

    pizza = {
        'cruse': 'thick',
        'toppings': ['mushrooms', 'extra cheese'],
        }
    
    print("You ordered a " + pizza['cruse'] + "-crust pizza" +
          "with the following toppings:")
    
    for topping in pizza['toppings']:
        print("	" + topping)

    You ordered a thick-crust pizzawith the following toppings:
      mushrooms
      extra cheese

    未写完......

  • 相关阅读:
    C#后台利用正则表达式查找匹配字符
    C# Dictionary 的几种遍历方法
    eval解析JSON中的注意点
    jquery datatables api (转)
    Replication--镜像+复制
    Replication--分区+复制
    Replication--进程无法在“xxxx”上执行“sp_replcmds”
    Replication--无法将事务提升为分布式事务,因为在事务中有活动的保存点
    Replication--使用MSlogreader_history查看日志读起的延迟和事务命令
    Partition--分区拆分和分区合并
  • 原文地址:https://www.cnblogs.com/nxopen2018/p/12512424.html
Copyright © 2011-2022 走看看