How can I add the same text(s) to two or more different lists?
For example, this is what I am doing:
>>> msg = 'Do it'
>>> first = list()
>>> second = list()
>>> first.append(msg)
>>> second.append(msg)
Not only this is causing redundancy, I think it makes for poor code. Is there any way I can add the same text to two or more different lists in one go?