目前,我正在尝试用 Python 填充字典,但我认为我正在做的事情有点多余。是否有更 Pythonic 的方式来执行以下操作:
if not pattern_file_map.get(which_match):
pattern_file_map[which_match] = [line]
else:
pattern_file_map[which_match].append(line)
pattern_file_map
字典在哪里。
我知道在检查字典中是否有键时有一定的习惯用法,比如 这个问题,但我只想用一个列表填充这个字典。