What is Dictionaries , lists and tuples in python
These are a part of type of Seauences in Python language.
1. List denated by [ , , , ]
2. Dictionaries denoted by { , , , }
3. Tuples denoted by ( , , , )
All these 3 posess some properties and there are several operations that can be performed on them.
List can store different data elements no matter of what type.
Example list1 = [ 1, 2, 3, 5]
Dictionaries contains a key value pair.
Example Dict1 = {"fname":"rashi ","lname":"shukla","age":"21"}
As these are among the important topics of python so description about the topics one by one is not possible here so will recommend you to please refer to the official python documentation at python.org and read the stuffs from there.