Python3 字典 Clear 方法 Python3 字典 Type 方法 Python3 字典 Copy 方法 Python3 字典 Clear 方法 #!/usr/bin/python3 dict = {'Name': 'Zara', 'Age': 7} print ("Start Len : %d" % len(dict)) dict.clear() print ("End Len : %d" % len(dict)) Python3 字典 Type 方法 Python3 字典 Copy 方法