How can we add the value 32 to the beginning of this list?

lottery.append(32)lottery.insert(0, 32)lottery.pop(32)

lottery.insert(0, 32).