Problem 1
Restaurant: Make a class called Restaurant. The __init_() method for Restaurant should store two attributes: a restaurant_name and a cuisine_type. Make a method called describe_restaurant () that prints these two pieces of information, and a method called open_restaurant () that prints a message indicating that the restaurant is open. Make an instance called restaurant from your class. Print the two attributes individually, and then call both methods.
Problem 15
Python Module of the Week: One excellent resource for exploring the Python standard library is a site called Python Module of the Week. Go to http://pymotw.com/ and look at the table of contents. Find a module that looks interesting to you and read about it, or explore the documentation of the collections and random modules.