str.isalnum()
Return true if all characters in the string are alphanumeric and there is at least one character, false otherwise. A character c
is alphanumeric if one of the following returns True
: c.isalpha()
, c.isdecimal()
, c.isdigit()
, or c.isnumeric()
.
Please login to continue.