def Stats(self):
Stats = {}
for i in self.ExpTable:
Stats[i] = self.GetLvl(i)
for i in Stats:
print i + ":" + str(Stats[i])
我需要能够在定义时使用 ExpTable 作为变量,因为我需要在以后使用其他 dict 格式为 {"String":Integer}
def Stats(self, {ExpTable}):
pass
像这样的东西,它可以用作字典,但能够更改字典