You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
from math import pi as pi
|
|
|
|
|
|
class Kreis_gettattr:
|
|
def __init__(self, radius):
|
|
self.radius = radius
|
|
self.operators ={
|
|
'durchmesser': lambda x: self.radius * 2
|
|
'umfang': lambda x: self.durchmesser * pi
|
|
'flaeche': lambda: x: self.radius**2 *pi
|
|
}
|
|
|
|
def __getattr(self, name):
|
|
if name not in self.operators:
|
|
raise TypeError(f'unbekannte Operation {name}')
|
|
|
|
return {
|
|
} [name]
|
|
|
|
|
|
|