Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Automatic:
- def __init__(self):
- print("Началась инициализация!")
- self.time = 30
- self.name = "Будильник"
- duzz = Automatic()
- class Parrot:
- def __init__(self, color, size):
- self.color = color
- self.size = size
- def chirik(self):
- print(f"«Чирик-Чирик!» — сказал {self.size} {self.color} попугай." )
- kesha = Parrot("зелёный", "маленький")
- kesha.chirik()
- trip = {
- 13: ("Гостиный Двор", "ГДК", "Магазин Гипер", "Галерея"),
- 25: ("Парк Победы", "Улица Ленина", "Главная площадь", "Речное депо")
- }
- class Bus:
- def __init__(self, trip):
- self.trip = trip
- def navigator(self, stop):
- line = trip[self.trip]
- print(f"Автобус №{self.trip} прибыл на остановку {line[stop]}")
- go = Bus(13)
- speedy = Bus(25)
- for num in range(4):
- go.navigator(num)
- speedy.navigator(num)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement