2. Assign appropriate values to each key.
3. Print the value associated with the key "name" from the dictionary.
Right Answer:
# Step 1
person = {
"name": "John Doe",
"age": 30,
"job": "Engineer"
}
# Step 3
print(person["name"]) # Output: John Doe