✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Оберіть результат виконання програми:class Bird():....def __init__(self):........self.abilitytofly = Trueclass Parrot(Bird):....passclass Penguin(Bird):....def __init__(self):........self.abilitytofly = Falsefrosty = Penguin()petya = Parrot()print(frosty.abilitytofly, petya.abilitytofly)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!