1481: 【16】字典的遍历输出▃keys_values_items

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:8 Solved:7

Description

有这样一个字典:d = {123:"123", 333:"333", 888:"888"}

① 以列表形式输出所有键。

② 以列表形式输出所有值。

③ 以列表形式输出所有键值对。(键值对是元组放在列表中)