Python reversed() 函数 定义和用法 reversed() 函数返回一个反向的迭代器对象。 实例 反转列表的顺序,并打印每个项目: alph = ["a", "b", "c", "d"] ralph = reversed(alph) for x in ralph: print(x)复制尝试一下 句法 reversed(sequence)复制 参数值 参数 必需的 描述 sequence 是 任何可迭代的对象 相关页面 iter() - 返回一个迭代对象。 返回全部内置函数