Skip to content
String Methods

isalnum()

Check whether every character is a letter or a number.

str.isalnum()

Check whether every character is a letter or a number.

Returns

True when the string is non-empty and all characters are alphanumeric; otherwise False.

Try it

Run it and change it
text = "Code123"
print(text.isalnum())

Related entries