Why such structure
class A:
def __init__(self, a):
self.a = a
def p(self, b=self.a):
print b
gives an error NameError: name 'self' is not defined?
|
|
Default argument values are evaluated at function define-time, but It's a common pattern to default an argument to
|
||||
|
|
|
For cases where you also wish to have the option of setting 'b' to None:
|
|||