demo_ref_string_isalpha.py:
txt = "CompanyX" x = txt.isalpha() print(x)
➜ begtut>python demo_string_isalpha.py
True