Python isalnum()方法

Python isalnum()方法

Python 字符串Python 字符串

Python isalnum() 方法检测字符串是否由字母和数字组成。

 

语法

isalnum()方法语法:

str.isalnum()

 

参数

  • 无。

 

返回值

如果 string 至少有一个字符并且所有字符都是字母或数字则返回 True,否则返回 False

 

实例

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

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
str = "this2009";  # 字符中没有空格
print str.isalnum();
 
str = "this is string example....wow/b64/";
print str.isalnum();

以上实例输出结果如下:

True
False

Python 字符串Python 字符串

下一节:Python isalpha()方法

Python 教程

相关文章