字典dict

Example 5.10. UserDict 常规方法常规方法 常规方法
def clear(self): self.data.clear() (1)
def copy(self): (2)
if self.__class__ is UserDict: (3)
return UserDict(self.data)
import copy (4)
return copy.copy(self)
def keys(self): return self.data.keys() (5)
def items(self): return self.data.items()
def values(self): return self.data.values()

你可能感兴趣的:(字典dict)