幂函数代码
#编写一个函数 power() 模拟内建函数 pow(),即 power(x, y) 为计算并返回 x 的 y 次幂的值。def power(x,y):
result =x**y
print("the answer is:",result)
a = input('input a:')
b = input('input b:')
power(a,b)
请问这段代码有什么问题,请给出正确函数
input 是返回的是字符串,你要int 转为整型
def power(x,y):
result =x**y
print("the answer is:",result)
a = int(input('input a:'))
b = int(input('input b:'))
power(a,b)
页:
[1]