运行报错求助
Traceback (most recent call last):File "C:/Users/Administrator/Desktop/1.py", line 2, in <module>
guess=int(guess)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'
有大佬知道这个是怎么回事吗
不拿源码,你是让别人猜吗 是不是guess是一个字或者字母或特殊字符(不是数字)?这样是无法整形的
欢迎追问 int()函数只能将整数的字符转化为整型
如果temp为小数的字符串,则需要先转化为浮点型temp = float(temp)
之后再转化为整型temp = int(temp)
temp 参数必须是字符串、类似字节的对象或数字
你这里的报错原因为temp是“内置函数或方法”引发的类型错误
最好可以发源码,具体问题具体分析 wp231957 发表于 2021-7-15 06:17
不拿源码,你是让别人猜吗
盲猜input没加括号 kogawananari 发表于 2021-7-15 09:49
盲猜input没加括号
我即便能猜到也不去猜 传成方法了?
页:
[1]