If I have a script like:
class ClassA(object):
...
def methodA(...):
varA=...
def funcA(...):
...
varA=funA(...)
I mean I intend to write a small function inside a class method, which is only used inside this class method. Is this code style OK? I think it's a little ugly. Is there alternate?