Lists
Lists are the number of elements and we can change the values in the index .We use square brackets [] in the lists .
------------------------------------------------------------------------------------------
#Syntax:
lists=['Element']
print(lists)
-------------------------------------------------------------------------------------------
Here i can explain the list with example.
lists1=[1,2,3,4,5,6]
print(lists1[1])
output:
0 Comments