# reverse_list.py
names = ['Jane', 'Jennifer', 'Melissa', 'Tabitha']
names.reverse()
for z in names:
print(z)
input('')
'''
Tabitha
Melissa
Jennifer
Jane
'''
# Dedicated to God the Father
# All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024
# https://github.com/ChristopherTopalian
# https://github.com/ChristopherAndrewTopalian