What is the output of the following code:
def power(x, n=2):
return x ** n
result = power(3)
print(result)
return x ** n
result = power(3)
print(result)
What is the output of the following code:def power(x, n=2): Correct Answer 9
return x ** n
result = power(3)
print(result)
মোঃ আরিফুল ইসলাম
Feb 20, 2025