Lists in Python
# ============================
# Lits
# in lists every element can be of different type
letters = ["a", "b", "c"]
matrix = [[1,2], [3,4]]
# repeating items in a list
print ([0] * 10)
# this will print [0,0,0,0,0,0,0,0,0,0]
# concating lists
zero...
blog.harshitsaini.com3 min read