Python reversed() 函数

实例

反转列表的顺序,并打印每个项目:

  1. alph = ["a", "b", "c", "d"]
  2. ralph = reversed(alph)
  3. for x in ralph:
  4. print(x)

定义和用法

reversed() 函数返回反向的迭代器对象。

语法

  1. reversed(sequence)

参数值

参数 描述
sequence 必需。可迭代对象。

相关页面

参考手册:iter() 函数(返回迭代器对象)

参考手册:list.reverse() 方法(反转列表)