class Restaurant():
def __init__(self, rest_name, cuisine_type):
self.rest_name = rest_name,
self.cuisine_type = cuisine_type
self.usp = 0
def describe(self):
print(self.rest_name + str(“24in7”))
def cuisine(self):
print(self.cuisine_type.title() + “ rolled over”)
def read_u(self):
print(“People ” + str(self.usp) + “ go home”)
Restaurant_f = Restaurant(“dominos”, “pizza”)
print(“My Restauran's name is ” + str(Restaurant_f.rest_name) + “.”)
print(“My cuisine in Restaurant is ” + str(Restaurant_f.cuisine_type))