Use IDLE's editor window to create the following program and save as favorites.py. Think of five of your favorite colors and create a list of your favorite colors. Store the colors in non-alphabetical order in a list. Print your list in its original order. Use sorted () to print your list in alphabetical order without modifying the actual list. Print your list to show it is still in its original order. Use sorted () to print your list in reverse alphabetical order. Print your list to show it is still in its original order. Use reverse() to change the order of your list. Print the list to show that its order has changed. Use reverse() to change the order of your list again. Print the list to show it's back to its original order. Use sort() to change your list so it's stored in alphabetical order. Print the list to show that its order has been changed. TUPLES 3. Using IDLE's editor, write a program to search the following tuple and find the instances of "Waldo." Have your resulting program indicate how many times Waldo is found. Save your program as waldo.py Names = ("John", "Fred", "Waldo", "Wally", "Waldorama", "Susan" "Nick", "Waldo", "Waldo", "Reese", "Haythem", "Kim", "Ned", "Ron") DICTIONARIES 4. Using IDLE's editor, create a python program with a dictionary to store the following information about a person you know: first name, last name, age, and the city in which they live. You should have keys such as first_name, last_name, age, and city. Print each piece of information stored in your dictionary. Save your file as info.py.