Quote: is str.isalpha() sufficient
Don't think so!
Look
here for simple guide to Python naming conventions.
Basically: The alphabet, big or small, and names not starting with numbers are allowed, and the underscore.
A class name should start with a CAPITAL LETTER it says, so you need to know what type you are dealing with. Tweak the re.
Since I've been looking at re lately, but not yet Ninja level, you could try something like this:
import re
# e = None if there is a number following \A
e = re.compile(r'\A(?=[a-zA-Z_]+)([a-zA-Z_]+)([0-9_]+)')
# e will match s but not t, u but not v
# f will catch names beginning with _
f = re.compile(r'\A(?=[a-zA-Z_]+)([0-9_]*)([a-zA-Z_]+)([0-9_]+)')
s = 'bad_boy_2'
t = '2_bad_boy'
u = 'Bad_Boy_2'
v = '2_Bad_Boy'
w = '_2_Bad_Boy_2'
x = '__main__'
Output:
res = e.match(s)
res
<re.Match object; span=(0, 9), match='bad_boy_2'>
res = e.match(t)
res # nothing
u = 'Bad_Boy_2'
res = e.match(u)
res # <re.Match object; span=(0, 9), match='Bad_Boy_2'>
res.group(1) # 'Bad_Boy_'
res.group(2) # '2'
v = '2_Bad_Boy'
res = e.match(v)
res # nothing