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

# Get the value associated with the 'name' key
name = student['name']
print(f"Name: {name}")