码迷,mamicode.com
首页 > 编程语言 > 详细

python int函数转换浮点型字符串的坑???

时间:2015-06-04 19:19:32      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

python中的int函数可以将数字或字符串转换为整型数字类型,具体功能就不提了

最近发现一个问题,对于字符串‘1.1‘之类的,int转换的时候会报异常,这是为什么,个人感觉直接转换成1不就行了,干嘛还不能转换了

>>> int(‘1.1‘)

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    int(‘1.1‘)
ValueError: invalid literal for int() with base 10: ‘1.1‘
>>> int(1.1)
1
>>> int(‘1‘)
1
>>>

这是坑,还是故意的,又没有大神解释一下这是为什么要这么设定

python int函数转换浮点型字符串的坑???

标签:

原文地址:http://www.cnblogs.com/dyfblog/p/4552384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!