python_ref_reversed.py:
x
 
alph = ["a", "b", "c", "d"]
ralph = reversed(alph)
for x in ralph:
  print(x)