有没有办法将值添加到在不同脚本中定义的字典中?
file_1.py
dictionary = {1:1, 2:2}
file2.py
from file_1 import dictionary as d
for i in range(10):
if i not in d:
d[i] = i
desired result
file_1.py
dictionary = {1:1, 2:2, 3:3, 4:4, 5:5, 6:6, 7:7, 8:8, 9:9}
我试试这个,但file_1中的字典没有改变。有没有办法在没有文件读取的情况下执行此操作,只是将值附加到字典中?