在Python中,你可以使用for循环和字典的items()方法来遍历字典并输出键值对。以下是两种方法的示例:
方法1:使用for循环和items()方法
dictionary = {'a': 1, 'b': 2, 'c': 3}
for key, value in dictionary.items():
print(key, value)
方法2:使用for循环和字典的keys()和values()方法
dictionary = {'a': 1, 'b': 2, 'c': 3}
for key in dictionary.keys():
print(key, dictionary[key])
在这两种方法中,key
变量表示字典的键,value
变量表示字典的值。你可以根据需要选择合适的方法。