Python 函数参数中没有标识符的单个 * 是什么意思?这是一个适用于 Python3.2 的示例:
class Shape:
def __init__(self, *, shapename, **kwds):
self.shapename = shapename
super().__init__(**kwds)
对我来说,自我之后的星星很奇怪。
我在这里找到了它(从第 46 行开始): http ://code.activestate.com/recipes/577720-how-to-use-super-effectively/