10 lines
186 B
Python
10 lines
186 B
Python
from calc import calculator as calc
|
|
|
|
print("erfolgreich importiert")
|
|
|
|
current_calc = calc()
|
|
|
|
print(current_calc.pythagoras(3, 4))
|
|
print(current_calc.addition(current_calc.mem_res, 20))
|
|
|