How can I use the startswith function to match any alpha character [a-zA-Z]. For example I would like to do this:
if line.startswith(ALPHA):
Do Something
If you want to match non-ASCII letters as well, you can use str.isalpha
:
if line and line[0].isalpha():