Last active
October 15, 2021 02:04
-
-
Save reydx/559ad303b9093caec1ba10b091e82830 to your computer and use it in GitHub Desktop.
python skills
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if key not in my_dict: | |
my_dict[key] = [] | |
my_dict[key].append(new_value) | |
# 等价于 | |
my_dict.setdefault(key, []).append(new_value) | |
# 等价于 | |
import collections | |
my_dict = collections.defaultdict(list) | |
my_dict[key].append(new_value) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment