python通过自定义isnumber函数判断字符串是否为数字的方法


Posted in Python onApril 23, 2015

本文实例讲述了python通过自定义isnumber函数判断字符串是否为数字的方法。分享给大家供大家参考。具体如下:

''' isnumeric.py
test a numeric string s if it's usable
for int(s) or float(s)
'''
def isnumeric(s):
  '''returns True if string s is numeric'''
  return all(c in "0123456789.+-" for c in s)
# test module ...
if __name__ == '__main__':
  print(isnumeric('123'))   # True
  print(isnumeric('-123.45')) # True
  print(isnumeric('+3.14'))  # True
  print(isnumeric('$99.95'))  # False

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python数据结构与算法之链表定义与用法实例详解【单链表、循环链表】
Sep 28 Python
基于Django contrib Comments 评论模块(详解)
Dec 08 Python
Python的SimpleHTTPServer模块用处及使用方法简介
Jan 22 Python
Python实现获取nginx服务器ip及流量统计信息功能示例
May 18 Python
Windows下将Python文件打包成.EXE可执行文件的方法
Aug 03 Python
python绘制热力图heatmap
Mar 23 Python
Python 存储字符串时节省空间的方法
Apr 23 Python
Django 实现Admin自动填充当前用户的示例代码
Nov 18 Python
tensorflow实现对张量数据的切片操作方式
Jan 19 Python
小白教你PyCharm从下载到安装再到科学使用PyCharm2020最新激活码
Sep 25 Python
Python的3种运行方式:命令行窗口、Python解释器、IDLE的实现
Oct 10 Python
Python如何用re模块实现简易tokenizer
May 02 Python
用Python给文本创立向量空间模型的教程
Apr 23 #Python
用Python进行行为驱动开发的入门教程
Apr 23 #Python
python正常时间和unix时间戳相互转换的方法
Apr 23 #Python
python执行等待程序直到第二天零点的方法
Apr 23 #Python
在Python中测试访问同一数据的竞争条件的方法
Apr 23 #Python
python实现在每个独立进程中运行一个函数的方法
Apr 23 #Python
python输出指定月份日历的方法
Apr 23 #Python
You might like
php计算当前程序执行时间示例
2014/04/24 PHP
基于PHP的简单采集数据入库程序【续篇】
2014/07/30 PHP
php获取apk包信息的方法
2014/08/15 PHP
php实现微信企业号支付个人的方法详解
2017/07/26 PHP
一个简单的js渐显(fadeIn)渐隐(fadeOut)类
2010/06/19 Javascript
Jquery插件之多图片异步上传
2010/10/20 Javascript
jquery ajax学习笔记2 使用XMLHttpRequest对象的responseXML
2011/10/16 Javascript
Javascript中产生固定结果的函数优化技巧
2013/01/16 Javascript
jQuery中attr()和prop()在修改checked属性时的区别
2014/07/18 Javascript
js改变Iframe中Src的方法
2015/05/05 Javascript
JS实现左右拖动改变内容显示区域大小的方法
2015/10/13 Javascript
javascript入门教程基础篇
2015/11/16 Javascript
AngularJS 霸道的过滤器小结
2017/04/26 Javascript
JavaScript设计模式之代理模式详解
2017/06/09 Javascript
vue实现购物车列表
2020/06/30 Javascript
下载糗事百科的内容_python版
2008/12/07 Python
Python实现SVN的目录周期性备份实例
2015/07/17 Python
利用Python-iGraph如何绘制贴吧/微博的好友关系图详解
2017/11/02 Python
Centos下实现安装Python3.6和Python2共存
2018/08/15 Python
Python分布式进程中你会遇到的问题解析
2019/05/28 Python
python进程间通信Queue工作过程详解
2019/11/01 Python
opencv python图像梯度实例详解
2020/02/04 Python
python实现计算器简易版
2020/12/17 Python
时尚、社区、科技:SEVENSTORE
2019/04/26 全球购物
Perfume’s Club中文官网:西班牙美妆在线零售品牌
2020/08/24 全球购物
丝芙兰墨西哥官网:Sephora墨西哥
2020/05/30 全球购物
int和Integer有什么区别
2013/05/25 面试题
心理健康教育制度
2014/01/27 职场文书
仓库组长岗位职责
2014/01/29 职场文书
上课玩手机检讨书
2014/02/08 职场文书
国庆节标语大全
2014/10/08 职场文书
个性与发展自我评价
2015/03/06 职场文书
党员反邪教心得体会
2016/01/15 职场文书
火锅店的开业营销方案范本!
2019/07/05 职场文书
2019年亲子运动会口号
2019/10/11 职场文书
Springboot配置suffix指定mvc视图的后缀方法
2021/07/03 Java/Android