源代码
alph = ["a", "b", "c", "d"] ralph = reversed(alph) for x in ralph: print(x)
运行结果