lv112369 发表于 2022-2-8 11:25:42

int

猜小甲鱼心里想的是什么数字的那个游戏,属于8.3为什么会报错他,明明已经guess = int(temp)了已经int了,为啥报错呀

ckblt 发表于 2022-2-8 11:27:30

可以把所有代码发一下吗

ckblt 发表于 2022-2-8 11:30:28

是不是你输入了小数

列斗 发表于 2022-2-8 12:00:39

请贴代码

python爱好者. 发表于 2022-2-8 12:04:30

你输入的 8.3 是小数,必须是整数呀!

ckblt 发表于 2022-2-8 12:14:11

如果你想输入小数,你就要
guess = float(temp)

python爱好者. 发表于 2022-2-8 12:15:58

ckblt 发表于 2022-2-8 12:14
如果你想输入小数,你就要

非要 int() 方法可以:
guess = int(temp + 0.5)

ckblt 发表于 2022-2-8 12:21:12

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

python爱好者. 发表于 2022-2-8 12:45:41

ckblt 发表于 2022-2-8 12:21
不对吧,我报错:

打错了,是:
int(int(temp) + 0.5)

其实就是四舍五入

shiyouroc 发表于 2022-2-8 13:51:39

四舍五入有个专门的函数,不一定要这样。

shiyouroc 发表于 2022-2-8 13:52:12

python爱好者. 发表于 2022-2-8 12:45
打错了,是:




四舍五入有一个专门的函数,不一定要这样做。

python爱好者. 发表于 2022-2-8 13:52:47

shiyouroc 发表于 2022-2-8 13:52
四舍五入有一个专门的函数,不一定要这样做。

这样简单,何必非要用函数呢?

shiyouroc 发表于 2022-2-8 13:54:40

temp=int(tmep)
temp=round(temp)

shiyouroc 发表于 2022-2-8 13:55:47

请你把我设为最佳答案,谢谢了。

python爱好者. 发表于 2022-2-8 13:56:09

shiyouroc 发表于 2022-2-8 13:54
temp=int(tmep)
temp=round(temp)

呼呼,你想怎样些都可以,只要用自己喜欢的方式写就行

shiyouroc 发表于 2022-2-8 14:06:27

int无法输入小数,那应该改为。temp=float(temp) temp=round(temp)

Twilight6 发表于 2022-2-8 16:53:26


input 函数是等待用户输入,并将其转化为字符串,所以 input 函数返回的总是字符串类型数据

而 int 函数是只能将 整数类型的字符串转换为 整型,而你输入了 8.3 ,那么 input 函数 返回的即是 "8.3" 字符串

而 字符串中有 . 小数点,就会导致此时 int 函数转换失败,导致报错

所以此时我们应该用 float 将字符串转换为浮点型,这样就能避免报错

不弃_ 发表于 2022-2-8 20:07:45

guess = int(8.4)
8
我没报错

白two 发表于 2022-2-9 16:49:17

你看这个就懂了
>>> 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]
查看完整版本: int