python oops practice questions code example
Example 1: python exercises with solutions init method
>>> class Triangle(object):
... def __init__(self,angle1,angle2,angle3):
... self.angle1=angle1
... self.angle2=angle2
... self.angle3=angle3
...
... number_of_sides=3
... def check_angles(self):
... if self.angle1+self.angle2+self.angle3 ==180:
... return True
... else:
... return False
...
>>> class Equilateral(Triangle):
... angle = 60
... def __init__(self):
... self.angle1 = self.angle2 = self.angle3 = self.angle
...
>>> my_triangle=Triangle(90,30,60)
>>>
>>> print my_triangle.number_of_sides
3
>>> print my_triangle.check_angles()
True
>>>
>>>
Example 2: python oops practice questions
class MinimumBalanceAccount(BankAccount):
def __init__(self, minimum_balance):
BankAccount.__init__(self)
self.minimum_balance = minimum_balance
def withdraw(self, amount):
if self.balance - amount < self.minimum_balance:
print('Sorry, minimum balance must be maintained.')
else:
BankAccount.withdraw(self, amount)