python
# Define a dictionary
student = {
    'age': 25,
    'course': 'Computer Science',
}

# Get the value associated with the 'name' key (with a default value) 
#Then set the key if it doesn't exist
name = student.setdefault('name', 'Unknown')
print(f"Name: {name}")