import random
import time
print "please choose a colour"
time.sleep(1)
print "red, \nyellow, \nblue, \ngreen \nor other"
time.sleep(1)
colour = raw_input("select your color ")
print colour, len(colour)
x = raw_input("Do you wish to know what next year has for you?, yes or no? ")
if x == 'yes':
    time.sleep(0.5)
    future = ['You will get another 500 twitter followers',
                'Those shoes will be in the sale and fit like a dream',
              'You will find your inner geek',
              'Chocoloate really will cure everything' ]
    time.sleep(1)
    print(random.choice(future))
    time.sleep(2)
elif x == 'no':
    print "Ok not today!"
    time.sleep(2)
else:
    print "Yes or No?"
    

