Random choice, a coin toss of 0 and 1:
Code:
#!/usr/bin/python
import random
import time
a = "0"
b = "1"
print "0"
time.sleep(1)
print "1"
time.sleep(1)
print "0"
time.sleep(1)
print "1"
time.sleep(1)
print "0"
time.sleep(1)
print "1"
time.sleep(1)
print "and the winner is:"
time.sleep(3)
print random.choice([a, b])
time.sleep(3)