2022-11-13 10:39:28 -08:00

10 lines
65 B
Python

>>> for c in reversed("foobar"):
... print(c)
...
r
a
b
o
o
f