Пример #1
0
 def circumference(self):
     'adjusted perimeter for width of tyre'
     return 1.25 * Circle.circumference(self)
 def circumference(self):
     'adjusted perimeter for width of tyre'
     # unbound method call
     return 1.25 * Circle.circumference(self)
Пример #3
0
 def circumference(self):
     'adjusted for width of tire'
     return Circle.circumference(self) * 1.25