Odpowiedź :
Odpowiedź:
def exp(x):
_2nd = x ** 2
_3rd = x ** 3
_4th = x ** 4
return (_2nd, _3rd, _4th)
x = int(input("Wejscie: "))
print(str(exp(x)))
Wyjaśnienie:
Odpowiedź:
def exp(x):
_2nd = x ** 2
_3rd = x ** 3
_4th = x ** 4
return (_2nd, _3rd, _4th)
x = int(input("Wejscie: "))
print(str(exp(x)))
Wyjaśnienie: