Result Size: 625 x 571
demo_ref_reversed.py:
x
 
alph = ["a", "b", "c", "d"]
ralph = reversed(alph)
for x in ralph:
  print(x)
C:\Users\My Name>python demo_reversed.py
d
c
b
a