#python-beginner
Read more stories on Hashnode
Articles with this tag
A list in Python is used to store the sequence of various types of data. Python lists are mutable type, it means that we can modify it's element after...
Python Dictionaries store data values in key : value pairs. car = { "brand" : "Tesla", "model" : "S" } ◽️ Dict are ordered (Py 3.7), it means that the...