First Run the code below, then try and recreate the hidden code without looking!
challenge5.py
import random
total = int(input("Enter total number of classmates: "))
mates = []
for i in range(total):
mates.append(input("Enter mates name #"+str(i)+": "))
print("Here is your list of mates:")
print(mates)
print("Here is your list of mates backwards:")
print(mates[::-1])