python中的序列

文章目录

    • 序列类型
    • 标准类型运算符
    • 标准类型运算符
    • 序列类型运算符
    • 字符串

序列类型

python中的序列_第1张图片
字符串 列表 元组 由元组构成的列表

标准类型运算符

python中的序列_第2张图片
(1)按字符串大小比较

标准类型运算符

python中的序列_第3张图片

序列类型运算符

python中的序列_第4张图片

序列类型转换内建函数

python中的序列_第5张图片
注:
(1)sum()求和
(2)reversed逆序

示例1:反转字符串
返回一个反向迭代器对象。可以使用list()函数将其转换为一个列表。

string = "Hello, World!"
reversed_string = ''.join(reversed(string))
print(reversed_string)  # 输出:!dlroW ,olleH

示例2:反转列表

numbers = [1, 2, 3, 4, 5]
reversed_numbers = list(reversed(numbers))
print(reversed_numbers)  # 输出:[5, 4, 3, 2, 1]

字符串

python中的序列_第6张图片

你可能感兴趣的:(python,开发语言)