我正在从一本书中学习Python并上了课。当我使用类创建第一个程序时,该程序不返回任何输出,而仅以代码0退出。
class Restaurant():
def __init__(self, restaurant_name, cuisine_type):
self.restaurant_name = restaurant_name
self.cuisine_type = cuisine_type
def describe_restaurant(self):
print("\nThe restaurant is : " + self.restaurant_name)
print('\nThe cuisine offered is : '+ self.cuisine_type)
def open_restaurant():
print('\n\nThe restaurant is open! ')
rest_1 = Restaurant("Good", 'Indian')
rest_1.describe_restaurant()
print("Hello")
我包括了print(“ Hello”)只是为了检查输出是否到来,但是什么也没有。我想我弄砸了一些东西,甚至可能是一个很愚蠢的东西。帮我解决这个问题!
谢谢。