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
|
How can I use the startswith function to match any alpha character [a-zA-Z]. For example I would like to do this:
|
|||
|
|
|
If you want to match non-ASCII letters as well, you can do:
|
|||||||||||||||
|
|
You can pass a tuple to
Of course, for this simple case, a regex test or the |
|||
|
|
This is probably the most efficient method:
|
|||||||
|
|
An easy solution would be to use the python regex module:
|
|||||||
|
|
|||
|
|
|
if you don't care about blanks in front of the string,
|
|||
|
|