Python记:索引操作示例:将以数指定年,月,日的日期打印出来

Posted dragondragon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python记:索引操作示例:将以数指定年,月,日的日期打印出来相关的知识,希望对你有一定的参考价值。

————————————————————————————————————不要停止奔跑,不要回顾来路,来路无可眷恋,值得期待的只有前方。

months=[
    ‘January‘,
    ‘February‘,
    ‘March‘,
    ‘April‘,
    ‘May‘,
    ‘June‘,
    ‘July‘,
    ‘August‘,
    ‘September‘,
    ‘October‘,
    ‘November‘,
    ‘December‘
    ]

endings=[‘st‘,‘nd‘,‘rd‘]+17*[‘th‘]         +[‘st‘,‘nd‘,‘rd‘]+7*[‘th‘]         +[‘st‘]

year=input(‘Year: ‘)
month=input(‘Month(1-12): ‘)
day=input(‘Day(1-31): ‘)

month_number=int(month)
day_number=int(day)

month_name=months[month_number-1]
ordinal=day+endings[day_number-1]

print(month_name+‘ ‘+ordinal+‘,‘+year)

 预览:

技术图片

 

以上是关于Python记:索引操作示例:将以数指定年,月,日的日期打印出来的主要内容,如果未能解决你的问题,请参考以下文章

用到过的网站 记一下 2018年5月8日

2018年5月17日笔记

输出日历和索引示例

2017年8月21日 星期一 --出埃及记 Exodus 28:43

2017年8月8日 星期二 --出埃及记 Exodus 28:30

2017年7月9日 星期日 --出埃及记 Exodus 27:21