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.
21 lines
265 B
21 lines
265 B
4 weeks ago
|
# Datei static.py
|
||
|
|
||
|
class Math():
|
||
|
|
||
|
@staticmethod
|
||
|
def add(x,y):
|
||
|
return x+y
|
||
|
|
||
|
@staticmethod
|
||
|
def sub(x,y):
|
||
|
return x-y
|
||
|
|
||
|
@staticmethod
|
||
|
def mul(x,y):
|
||
|
return x*y
|
||
|
|
||
|
|
||
|
print(f'Add: {Math.add(3,2)}')
|
||
|
print(f'Sub: {Math.sub(3,2)}')
|
||
|
print(f'Mul: {Math.mul(3,2)}')
|