Hey guys I want the list that the user is creating with input to print in the order from latest entry to first entry..
the code I have right now does it for a few posts then it prints the list in some weird order
all_status_updates = []
def status():
while True:
status = input("Type Status Update Here...\n")
if status != "exit":
all_status_updates.append(status)
all_status_updates.sort(reverse = True)
print(all_status_updates)
elif status == "exit":
break
status()