how to check if a character is alphanumeric in python code example
Example 1: how to check if a string is composed only of alphanumeric in python
String.isalnum()
Example 2: how to check if a character is alphanumeric in python
#Python String isalnum() Method
txt = "Company12"
x = txt.isalnum()
print(x)
#output:
True