首页 > 编程语言 > 详细

Python 判断是否可以转化为浮点数及其他数字类型

时间:2018-05-19 22:28:03      阅读:273      评论:0      收藏:0      [点我收藏+]

Python中出现ValueError: could not convert string to float:应该怎么处理

import sys
import math



# 判断是否为浮点数
def isNum2(value):
    try:
        x = float(value) #此处更改想判断的类型
    except TypeError:
        return False
    except ValueError:
        return False
    except Exception as e:
        return False
    else:
        return True

感谢来源

https://blog.csdn.net/u010299224/article/details/50787427

 

Python 判断是否可以转化为浮点数及其他数字类型

原文:https://www.cnblogs.com/zwj-pot/p/9061804.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!