Python/ref func reversed

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python reversed()函数

❮内置功能

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

    alph = ["a", "b", "c", "d"]
ralph = reversed(alph)
for x in ralph:
  
    print(x)

定义和用法

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

句法

    reversed(sequence)
  

参数值

参数 描述
sequence 需要。任何可迭代的对象

相关页面

The iter()

函数返回一个迭代器对象。

The list 。逆转()

方法反转列表。

❮内置功能