int
猜小甲鱼心里想的是什么数字的那个游戏,属于8.3为什么会报错他,明明已经guess = int(temp)了已经int了,为啥报错呀 可以把所有代码发一下吗 是不是你输入了小数 请贴代码 你输入的 8.3 是小数,必须是整数呀! 如果你想输入小数,你就要guess = float(temp) ckblt 发表于 2022-2-8 12:14
如果你想输入小数,你就要
非要 int() 方法可以:
guess = int(temp + 0.5) python爱好者. 发表于 2022-2-8 12:15
非要 int() 方法可以:
不对吧,我报错:
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
guess = int(temp + 0.5)
TypeError: can only concatenate str (not "float") to str ckblt 发表于 2022-2-8 12:21
不对吧,我报错:
打错了,是:
int(int(temp) + 0.5)
其实就是四舍五入 四舍五入有个专门的函数,不一定要这样。 python爱好者. 发表于 2022-2-8 12:45
打错了,是:
四舍五入有一个专门的函数,不一定要这样做。 shiyouroc 发表于 2022-2-8 13:52
四舍五入有一个专门的函数,不一定要这样做。
这样简单,何必非要用函数呢? temp=int(tmep)
temp=round(temp) 请你把我设为最佳答案,谢谢了。 shiyouroc 发表于 2022-2-8 13:54
temp=int(tmep)
temp=round(temp)
呼呼,你想怎样些都可以,只要用自己喜欢的方式写就行 int无法输入小数,那应该改为。temp=float(temp) temp=round(temp)
input 函数是等待用户输入,并将其转化为字符串,所以 input 函数返回的总是字符串类型数据
而 int 函数是只能将 整数类型的字符串转换为 整型,而你输入了 8.3 ,那么 input 函数 返回的即是 "8.3" 字符串
而 字符串中有 . 小数点,就会导致此时 int 函数转换失败,导致报错
所以此时我们应该用 float 将字符串转换为浮点型,这样就能避免报错 guess = int(8.4)
8
我没报错 你看这个就懂了
>>> a = input()
8.4
>>> type(a)
<class 'str'>
>>> int('8.4')
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
int('8.4')
ValueError: invalid literal for int() with base 10: '8.4'
>>> int(float('8.4'))
8
int 转换 字符串 只支持字符串为整形的情况
页:
[1]