Learning about Python Dictionary
Python Dictionaries store data values in key : value pairs.
car = { "brand" : "Tesla", "model" : "S" }
◽️ Dict are ordered (Py 3.7), it means that the items have a defined order.
◽️ Cannot have two items with the same key.
◽️ We can update, add or re...
tanmayrauth.hashnode.dev3 min read