Problem 1
Create a file called zoo.py. In it, define a function called hours () that prints the string 'Open 9-5 daily'. Then, use the interactive interpreter to import the zoo module and call its hours () function.
Problem 5
Make a dictionary called plain with the key-value pairs ' \(a\) ' : 1 , ' \(b\) ' : 2 , and ' \(c\) ' : 3, and then print it.
Problem 7
Make a defaultdict called dict_of_lists and pass it the argument list. Make the list dict_of_lists['a'] and append the value 'something for \(a\) ' to it in one assignment. Print dict_of_lists [' \(a\) ' ].