If I have an integer in input and a list in input, is it possible to multiply the integer by the list?
M = int(input())
C = (eval('[' + input() + ']'))
That is, to have '' M '' lists according to the integer that I put in M, hence I will be forming the lists. The integer number M defines the number of lists.
ex: M =2
C = [1,2,3]
[4,5,6]