I want to replicate a list more than 1000 times and then append to a larger list.
For instance:
a = ['1','2','3','4]
When replicating this list and then nesting it a hundred times:
output = [['1','2','3','4],['1','2','3','4],['1','2','3','4],['1','2','3','4],['1','2','3','4].....]
So far I've only come across a*2, which is not want I want.