您现在的位置是:课程教程文章

python有哪些is开头的字符串方法

2023-12-13 23:35课程教程文章 人已围观

说明

1、isspace判断指定的字符串是否全部由空白字符组成。

2、isalpha判断指定的字符串是否全部由字母组成。

3、isdecimal。

判断指定字符串是否全部由十进制数字组成。

4、Isnumeric。

判断指定的字符串是否全部由数字组成。

5、Isalnum。

判断指定的字符串是否全部由字母和数字组成。

实例

print('\t\r\n'.isspace())#True

print('abc'.isalpha())#True
print('abc1'.isalpha())#False

print('123'.isdecimal())#True
print('123六Ⅵ'.isdecimal())#False

print('123六Ⅵ'.isnumeric())#True
print('123六Ⅵa'.isnumeric())#False

print('abc123六Ⅵ'.isalnum())#True
print('abc123六Ⅵ!'.isalnum())#False

以上就是python is开头的字符串方法,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python有哪些is开头的字符串方法

上一篇:python去除字符串的前导或后续

下一篇:没有了

站点信息

  • 文章统计篇文章