Answers for "python dictionry"

0

Python Dictionaries

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
print(thisdict["brand"])
Posted by: Guest on February-01-2021
0

python dict

>>> d = {}
>>> d
{}
>>> d = {'dict': 1, 'dictionary': 2}
>>> d
{'dict': 1, 'dictionary': 2}
Posted by: Guest on November-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language