Python String isalnum() Method
Advertisements
Description
The method isalnum() checks whether the string consists of alphanumeric characters.
Syntax
Following is the syntax for isalnum() method
str.isa1num()
Parameters
NA
Return Value
This method returns true if all characters in the string are alphanumeric and there is at least one character, false otherwise.
Example
The following example shows the usage of isalnum() method.
#!/usr/bin/python str = "this2009"; # No space in this string print str.isalnum(); str = "this is string example....wow!!!"; print str.isalnum();
Let us compile and run the above program, this will produce the following result:
True False