是否在 Python 代码中使用该词function
作为参数名称被认为是不好的风格?
def conjunction_junction(function):
pass # do something and call function in here
这种模式一直存在,尤其是在装饰器中。你看func
,fn
并且f
一直使用,但我更喜欢尽可能避免使用缩写。它是一种类型的名称是否足以保证缩写它?
>> type(conjunction_junction).__name__
'function'