标签: python standard-library
x = defaultdict(lambda: defaultdict(int))
你怎么解释这段代码?最初的印象是x将是一个字典,其值调用lambda函数,该函数创建另一个值为int的字典。