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)
点击加载更多评论>>