Home > Article > Backend Development > Python Dictionary Tips: Secrets to Improve Code Efficiency
1. Creation of dictionary
my_dict = {"name": "John Doe", "age": 30, "city": "New York"}
my_dict = dict(name="John Doe", age=30, city="New York")
my_dict = {key: value for key, value in zip(["name", "age", "city"], ["John Doe", 30, "New York"])}
2. Modification of dictionary
my_dict["job"] = "Software Engineer"
my_dict["age"] = 31
del my_dict["city"]
3. Dictionary search
value = my_dict["name"]
get()
method to get the value (if the key does not exist, return the default value): value = my_dict.get("phone", "Not provided")
if "email" in my_dict: # 键存在,执行某些操作
4. Dictionary traversal
for key in my_dict: print(key)
for key, value in my_dict.items(): print(key, value)
dict.values()
and dict.keys()
): for value in my_dict.values(): print(value) for key in my_dict.keys(): print(key)
5. Other techniques
my_dict1 = {"name": "John Doe", "age": 30} my_dict2 = {"city": "New York", "job": "Software Engineer"} my_dict3 = {**my_dict1, **my_dict2}
my_dict_copy = my_dict.copy()
sorted_dict = dict(sorted(my_dict.items(), key=lambda item: item[1]))
Mastering these skills can help you use python dictionaries more efficiently and improve the quality and performance of your code.
The above is the detailed content of Python Dictionary Tips: Secrets to Improve Code Efficiency. For more information, please follow other related articles on the PHP Chinese website!