在python中,是否可以定义可覆盖的可选默认值,如果您定义该值,它不使用默认值,但如果您不使用,它会使用?
例如:
def hats(a= 'large', b= 'baseball', c= 'five dollars'):
#method stuff goes here
我知道我可以定义,a
然后将默认值,但我可以以某种方式定义并拥有和使用默认值吗?b
c
c
a
b
比如,我可以调用方法吗hats(NULL, something, something else)