
Malcolm C. answered 02/09/23
Tutor
4.9
(48)
PhD in engineering with post-doc studies in computer science
def raise_exponent(x, y):
return x**y
z = raise_exponent(3,2)
print(f'3 squared is {z}')