When I need to add several identical items to the list I use list.extend:
a = [\'a\', \'b\', \'c\'] a.extend([\'d\']*3)
Result
Stacked LCs.
[y for x in a for y in [x[0]] * x[1]]