标签: python arrays dictionary
所以我想将一个字典中的所有键复制到另一个字典中,并用空列表初始化它:
filtered_result = {} for key in result.keys(): filtered_result[key] = []
所以我尝试了一种更优雅的方式来做同样的事情:
filtered_result = {} filtered_result.fromkeys(result.keys(), [])
但第二种方式似乎不起作用。我做错了什么?