驼瑞驰调查了班上部分同学喜欢哪些颜色,并创建了一个依次包含键-值对'Allen': ['red', 'blue', 'yellow']、'Tom': ['green', 'white', 'blue']和'Andy': ['black', 'pink']的字典result_dict,作为已记录的调查结果。 现在驼瑞驰想查看字典result_dict的内容,你能帮帮他吗? 使用for循环遍历"使用sorted()函数按升序进行临时排序的包含字典result_dict的所有键的列表",对于每一个遍历到的名字,先使用print()语句一行输出类似字符串"Allen's favorite colors are:"的语句,然后再使用for循环遍历该名字在字典result_dict中对应的列表,依次输出该列表中的颜色。
输入描述:


输出描述:
按题目描述进行输出即可。Allen's favorite colors are:redblueyellowAndy's favorite colors are:blackpinkTom's favorite colors are:greenwhiteblue
加载中...