将Python字典传递给类会改变字典的值
这个问题在这里已经有了答案:
一般来说,您需要将字典的副本传递给您的班级 - 或者您可以在班内复印一份副本......
self.myDict = myDict.copy()
链接地址: http://www.djcxy.com/p/20845.html
上一篇: Passing python dictionary to a class changes the value of dictionary