• 2022-06-18
    有字典weather如下,下列选项中可以打印“阴”的是( )weather = {"周一": [26, "晴"], "周二": [24, "阴"], "周三": [22, "雨"]}
    A: print(weather["周一"][0])
    B: print(weather["周一"][1])
    C: print(weather["周二"][1])
    D: print(weather["周二"][2])