fork download
  1. from random import randint
  2.  
  3. update_tomorrow = randint(0,1)
  4.  
  5. if update_tomorrow == 1:
  6. print ("I wouldn't give your hopes up.")
  7. else:
  8. print ("I would give your hopes up.")
Success #stdin #stdout 0.01s 11448KB
stdin
Standard input is empty
stdout
I would give your hopes up.