9-1
class Restaurant():
def __init__(self, r_name, c_type):
self.restaurant_name = r_name
self.cuisine_type = c_type
def describe_restaurant(self):
print("Restaurant Name: " + self.restaurant_name + "\nCuisine Type: " + self.cuisine_type)
def open_restaurant(self):
print("The restaurant is open. ")class Restaurant():
def __init__(self