Advertisement
k1alo

Untitled

Oct 18th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. associations = {
  2.     1: "Вашингтон - Соединенные Штаты Америки",
  3.     5: "Лондон - Великобритания",
  4.     10: "Париж - Франция",
  5.     20: "Рим - Италия",
  6.     50: "Киото - Япония",
  7.     100: "Москва - Россия"}
  8. for denomination, associations in associations.items():
  9.     print(f"Номинал {denomination} ассоциируется с городом {associations}f")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement