demo_ref_string_isalnum.py:
txt = "Company12" x = txt.isalnum() print(x)
C:\Users\My Name>python demo_string_isalnum.py
True