my_list = ["P", "y", "t", "h", "o", "n"]
sorted_list = sorted(my_list)
print(sorted_list)
print(my_list)
my_list.sort(reverse=True)
print(my_list)