quiz.py 272 Bytes Edit 1 2 3 4 5 6 # 直接运行以下代码,说说你的发现: list_hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98] dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98} dict_hero['丁二']=10000000000 print(len(list_hero)) print(len(dict_hero))