好吃的小笼包 发表于 2020-7-3 18:18:02

幂函数代码

#编写一个函数 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)

请问这段代码有什么问题,请给出正确函数

Twilight6 发表于 2020-7-3 18:18:44



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]
查看完整版本: 幂函数代码