characters.',
'comment': 'A note in a program that the Python interpreter ignores.',
'list': 'A collection of items in a particular order.',
'loop': 'Work through a collection of items, one at a time.',
'dictionary': "A collection of key-value pairs.",
}
for name, a in glossary.items():
print(name.title() + a)
Как разделить две переменные здесь, чтобы они не слились?
print(f"{name.title()}: {a}"), например
заменить + на , (запятая) а вообще использовать форматирование строк
Спасибо большое
Обсуждают сегодня