9 lines
224 B
Python
9 lines
224 B
Python
favorite_languages = {
|
|
'jen': 'python',
|
|
'sarah': 'c',
|
|
'edward': 'rust',
|
|
'phil': 'python',
|
|
}
|
|
for name in sorted(favorite_languages.keys()):
|
|
print(f"{name.title()}, thank you for taking the poll.")
|
|
|