标签:style pytho 函数返回 lis span python3 反转 python基础 div
reversed 函数返回一个反转的迭代器。
reversed(seq)
seq -- 要转换的序列,可以是 tuple, string, list 或 range。
# 字符串 seqString = ‘Runoob‘ print(list(reversed(seqString))) # 元组 seqTuple = (‘R‘, ‘u‘, ‘n‘, ‘o‘, ‘o‘, ‘b‘) print(list(reversed(seqTuple))) # range seqRange = range(5, 9) print(list(reversed(seqRange))) # 列表 seqList = [1, 2, 4, 3, 5] print(list(reversed(seqList)))
输出结果如下所示:
[‘b‘, ‘o‘, ‘o‘, ‘n‘, ‘u‘, ‘R‘] [‘b‘, ‘o‘, ‘o‘, ‘n‘, ‘u‘, ‘R‘] [8, 7, 6, 5] [5, 3, 4, 2, 1]
20-python基础-python3-reversed()函数
标签:style pytho 函数返回 lis span python3 反转 python基础 div
原文地址:https://www.cnblogs.com/summer1019/p/11258420.html