Get your own Python server Result Size: 625 x 565
x
 
alph = ["a", "b", "c", "d"]
ralph = reversed(alph)
for x in ralph:
  print(x)
d
c
b
a