欢迎您 本站地址:  
返回首页   返回编程教学   名人励志书籍  男生头像搬砖  网络单机游戏  稗官野史  网络单机  网盘游戏大全  学习Docker  学习SQLite 

Python isnumeric()方法

Python 字符串 Python 字符串


描述

Python isnumeric() 方法检测字符串是否只由数字组成。这种方法是只针对unicode对象。

注:定义一个字符串为Unicode,只需要在字符串前添加 'u' 前缀即可,具体可以查看本章节例子。

语法

isnumeric()方法语法:

str.isnumeric()

参数

返回值

如果字符串中只包含数字字符,则返回 True,否则返回 False

实例

以下实例展示了isnumeric()方法的实例:

#!/usr/bin/python
str = u"this2009";  
print str.isnumeric();
str = u"23443434";
print str.isnumeric();

以上实例输出结果如下:

False
True

Python 字符串 Python 字符串

小库提示

扫描下方二维码,访问手机版。