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