gpt4 book ai didi

python - 类型错误 : must be real number, 不是 str

转载 作者:行者123 更新时间:2023-12-04 16:44:06 25 4
gpt4 key购买 nike

每当我朗读代码时,都会显示错误消息“TypeError: must be real number, not str”

from math import*

num1 = input("Enter the num ")
num2 = input("Enter the power ")

def exponent_func( num1 , num2):
return(pow ( str(num1) , str(num2) ))

exponent_func(num1 , num2)

最佳答案

使用 int不是 str

from math import*

num1 = input("Enter the num ")
num2 = input("Enter the power ")

def exponent_func( num1 , num2):
return(pow ( int(num1) , int(num2) ))

exponent_func(num1 , num2)

关于python - 类型错误 : must be real number, 不是 str,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52934200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com