• 大小:
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: Python
  • 标签: python  

资源简介

Python基础教程-第3版(文字版)电子书+源码

资源截图

代码片段和文件信息

# Print out a date given year month and day as numbers

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

# A list with one ending for each number from 1 to 31
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)

# Remember to subtract 1 from month and day to get a correct index
month_name = months[month_number-1]
ordinal = day + endings[day_number-1]

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      25963  2017-03-09 22:57  Beginning Python_version3_SourceCode\beginning-python-3ed-master\9781484200292.jpg

----------- ---------  ---------- -----  ----

                25963                    1


评论

共有 条评论