I have a question, how can we create a second list in python, which every content of this list is about 10 larger than first list. I can't solve it by loop(for). For example:
l1[2] = 2
l2[2] = 12
or
l1 = [0,1,2,3]
l2 = [10,11,12,13]
Thank You