如果要遍历字典my_dict中的所有项(键和值),应该使用如下哪种语句?( )
for key in my_dict:
for key, value in my_dict.items():
for value in my_dict:
for key, value in my_dict: