第14048题 单选
以下哪个选项可以删除Python字典中指定的键值对?
A
my_dict.remove(key)
B
del my_dict[key]
C
my_dict.clear(key)
D
my_dict.delete(key)