📜  使用 For 循环遍历字典 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.499000             🧑  作者: Mango

代码示例1
Titanic_cast = {
           "Leonardo DiCaprio": "Jack Dawson",
           "Kate Winslet": "Rose Dewitt Bukater",
           "Billy Zane": "Cal Hockley",
       }

print("Iterating through keys:")
for key in Titanic_cast:
    print(key)

print("\nIterating through keys and values:")
for key, value in Titanic_cast.items():
    print("Actor/ Actress: {}    Role: {}".format(key, value))

# output -
# Iterating through keys:
# Billy Zane
# Leonardo DiCaprio
# Kate Winslet

# Iterating through keys and values:
# Actor/ Actress: Billy Zane    Role: Cal Hockley
# Actor/ Actress: Leonardo DiCaprio    Role: Jack Dawson
# Actor/ Actress: Kate Winslet    Role: Rose Dewitt Bukater