Update This answer is expanded with more examples on the canonical question: https://stackoverflow.com/a/24557558/541136
You can do it like this:
['baby'] * 4
Note that this is best only used with immutable items in the list, because they all point to the same place in memory. I use this frequently when I have to build a table with a schema of all strings.
schema = ['string'] * len(columns)
Beware doing this with mutable objects, when you change one of them, they all change because they're all the same object:
foo = [[]] *4
foo[0].append('x')
foo now returns:
[['x'], ['x'], ['x'], ['x']]