创建空字典的方法为:
A.d={}print(d)
B.d=dict()print(d)
C.d=()print(d)
D.d=set()print(d)
点击查看答案
参考答案:
答案:AB
知识竞赛