创建空字典的方法为:


创建空字典的方法为:

A.d={}print(d)

B.d=dict()print(d)

C.d=()print(d)

D.d=set()print(d)

正确答案:AB


Tag:字典 方法 时间:2023-02-22 14:44:55