惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

噜啦 - 字典

字典、集合,你真的了解吗 - 噜啦 字典、集合,你真的了解吗 - 噜啦 列表推导式与字典推导式 - 噜啦 列表推导式与字典推导式 - 噜啦 字典 - 噜啦
字典 - 噜啦
博主: 噜啦 · 2019-09-07 · via 噜啦 - 字典

字典

  • 发布时间:
  • 1516 次浏览
  • 1695字数
  • 分类: Python笔记本
  1. 首页
  2. 正文  

代码

dict1 = {}
dict2 = {'x':1, 'y':2}
#为字典增加内容
dict2['z'] = 3
print(dict2)

运行

课堂联系

优化之前的生肖代码

chinese_zodiac = '猴鸡狗猪鼠牛虎兔龙蛇马羊'
zodiac_name = (u'摩羯座', u'水瓶座', u'双鱼座', u'白羊座', u'金牛座', u'双子座',
           u'巨蟹座', u'狮子座', u'处女座', u'天秤座', u'天蝎座', u'射手座')
zodiac_days = ((1, 20), (2, 19), (3, 21), (4, 21), (5, 21), (6, 22),
              (7, 23), (8, 23), (9, 23), (10, 23), (11, 23), (12, 23))

cz_num = {}
for i in chinese_zodiac:
    cz_num[i] = 0


z_num = {}
for i in zodiac_name:
    z_num[i] = 0

while True:
    # 用户输入月份和日期
    year = int(input('请输入年份:'))
    int_month = int(input('请输入月份:'))
    int_day = int(input('请输入日期:'))

    n=0
    while zodiac_days[n] < (int_month, int_day):
        if int_month == 12 and int_day > 23:
            break
        n += 1
    #输出生肖和星座
    print(zodiac_name[n])
    print('%s 年的生肖是 %s' %(year, chinese_zodiac[year % 12]))

    cz_num[chinese_zodiac[year % 12]] += 1
    z_num[zodiac_name[n]] += 1

    #输出生肖和星座的统计信息
    for each_key in cz_num.keys():
        print('生肖 %s 有 %d 个'%(each_key, cz_num[each_key]))

    for each_key in z_num.keys():
        print('星座 %s 有 %d 个' %(each_key,z_num[each_key]))

运行

......

赞赏作者

如果觉得我的文章对你有用,请随意赞赏