my_list = ['P','y','t','h','o','n']print('Here is the original list:')print(my_list)print()print('The result of a temporary reverse order:')print(sorted(my_list,reverse=True))print()print('Here is the original list again:')print...