2019/9/203-17选择题-慕课网就业班https://class.imooc.com/lesson/917#mid=242221/11.单选题编写代码,使得输出{'season1':'春天','season2':'夏天','season3':'秋天','season4':'冬天'},下列代码编写正确的是()(选一项)lst=['春天','夏天','秋天','冬天']dict1={'season'+str(i):lst[i]foriinrange(0,len(lst))}print(dict1)Alst=['春天','夏天','秋天','冬天']dict1={'season'+str(i+1):lst[i]foriinrange(0,len(lst))}print(dict1)Blst=['春天','夏天','秋天','冬天']dict1={'season'+str(i+1):lst[i]foriinrange(0,lst)}print(dict1)Clst=['春天','夏天','秋天','冬天']dict1={season+str(i+1):lst[i]foriinrange(0,len(lst))}print(dict1)D3-17选择题1章节问答笔记资料/Python零基础入门/步骤一·3-17选择练习