1424: 【14】字典的创建▁{}
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:27
Solved:19
Description
① 创建一个空字典dict1并输出。
② 把下表创建成字典dict2并输出。数字是键,英文是值。
1
one
2
two
3
three
Sample Input Copy
Sample Output Copy
{}
{1: 'one', 2: 'two', 3: 'three'}