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

# Get the value associated with the 'name' key (with a default value)    
name = student.get('name', 'Unknown')
print(f"Name: {name}")