fork download
  1. # 0J/QsNGA0YXQvtC80LXQvdC60L4=
  2. print("+ 8. Словники(dict)")
  3. person = {
  4. "name": "Артем",
  5. "age" : 17 ,
  6. "temperature": 36.6 ,
  7. "city": "Kyiv"
  8.  
  9. }
  10. print(person["name"])
  11. print(person["age"])
  12. print(person["temperature"])
  13. print(person["city"])
  14.  
Success #stdin #stdout 0.13s 14096KB
stdin
Standard input is empty
stdout
+ 8. Словники(dict)
Артем
17
36.6
Kyiv