位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python自带函数——整数 int()

提问人:杨紫红发布时间:2020-11-18

>>> int(123.456)

123

>>> int('123')

123

>>> int('123456')

Traceback (most recent call last):

File "<pyshell>", line 1, in <module>

int('123.456')

ValueError: invalid literal for int() with base 10: '123.456'

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部