String isalnum() Method
Syntax
str.isa1num()
|
Return Value
This method returns true if all the characters
in the string are alphanumeric and there is at least one character, false
otherwise.
Example
#!/usr/bin/python3
str
= "this2016" # No space in
this string
print
(str.isalnum())
str
= "this is string example....wow!!!"
print
(str.isalnum())
|
True
False
|
<<< index( ) Go to Index isalpha( ) >>>