python beginner practice problems
1,000+ Python Practice Challenges // Edabit
go to : https://edabit.com/challenges/python3
python beginner practice problems
1,000+ Python Practice Challenges // Edabit
go to : https://edabit.com/challenges/python3
python practice problems
Solve Python | HackerRank
Go to : https://www.hackerrank.com/domains/python
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
>>>
>>>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us