美文网首页
python-序列操作

python-序列操作

作者: 践行数据分析 | 来源:发表于2019-07-20 11:33 被阅读0次

通用的序列操作包括:索引、切片、相加、想乘、成员资格检查

索引操作示例
# 将以数指定年、月、日的日期打印出来

months = [

'January',

'February',

'March',

'April',

'May',

'June',

'July',

'August',

'September',

'October',

'November',

'December'

]

# 一个列表,其中包含数1~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)

# 别忘了将表示月和日的数减1,这样才能得到正确的索引

month_name = months[month_number-1]

ordinal = day + endings[day_number-1]

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

这个程序的运行情况类似于下面这样:

Year: 1974

Month (1-12): 8

Day (1-31): 16

August 16th, 1974

相关文章

  • python-序列操作

    通用的序列操作包括:索引、切片、相加、想乘、成员资格检查 索引操作示例# 将以数指定年、月、日的日期打印出来 mo...

  • python文件

    Python-文件相关操作 open() open(filename, mode) 返回一个文件对象fileobj...

  • Python文件操作

    Python-文件相关操作 open() open(filename, mode) 返回一个文件对象fileobj...

  • python-序列类型

    序列类型的索引体系 序列类型常用函数

  • Python序列的基本操作

    首先序列是什么: 在Python中序列有:字符串、数组、元组 切片操作 重复操作 连接操作 成员操作

  • python

    1)Python实现EXCEL常用操作——pandas简介 2)python-安装第三方包 3)python可视化...

  • python常用序列和基本操作

    常用序列 列表 字典 元组 常见操作 序列反转 reverse 序列排序 sort

  • 序列操作

    # 序列的操作 ''' 序列的索引与反向索引 python是由C编写,序列实际上是一个对象 是一个用数组存储的字符...

  • Python札记3_字符串基本操作

    字符串基本操作 字符串是一种序列,序列常见的公有操作: len() :求长度 + :两个序列相加 *:序列的重复,...

  • CH03序列及通用操作

    【课程3.2】 序列通用操作 序列分类:可变序列list,不可变序列tuple、str。 判断值是否属于序列 结...

网友评论

      本文标题:python-序列操作

      本文链接:https://www.haomeiwen.com/subject/ramylctx.html