首页题库练习题目详情
Python程序设计单选题中等

如何将键值对添加到字典中?

Adict.add('key', 'value')
Bdict['key'] = 'value'
Cdict.append('key', 'value')
Ddict.insert('key', 'value')