python-crash-course/Chapter_09/9-10_imported_restaurant.py
2025-03-02 23:21:42 +00:00

8 lines
217 B
Python

# Exercise 9-10 Imported Restaurant
# Learning Objective: Separate, import, and use a class
from restaurant import Restaurant
tonys_pizza = Restaurant("Tony's Pizza", "Pizzeria")
tonys_pizza.describe_restaurant()