Python isnumeric()方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python isnumeric()方法相关的知识,希望对你有一定的参考价值。
描述
isnumeric() 方法检测字符串是否只由数字组成。这种方法是只针对unicode对象。
注:定义一个字符串为Unicode,只需要在字符串前添加 ‘u‘ 前缀即可,具体可以查看本章节例子。
语法
isnumeric()方法语法:
str.isnumeric()
参数
- 无。
返回值
如果字符串中只包含数字字符,则返回 True,否则返回 False
实例
以下实例展示了isnumeric()方法的实例:
#!/usr/bin/python3 str = "runoob2016" print (str.isnumeric()) str = "23443434" print (str.isnumeric())
以上实例输出结果如下:
False True
以上是关于Python isnumeric()方法的主要内容,如果未能解决你的问题,请参考以下文章
Python3中isdigit(), isdecimal(), isnumeric()的区别和字符串的常用方法
为啥在给定文本行中的数字时 IsNumeric() 返回 False
[Python3 填坑] 002 isdecimal() 与 isdigit() 的区别 + isnumeric() 的补充