Don't like ads? PRO users don't see any ads ;-)
Guest

Python thing

By: a guest on Sep 5th, 2012  |  syntax: Python  |  size: 0.45 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. def start():
  2.     print "Hello get ready!"
  3.     name = raw_input ("What's your name:")
  4.     print "Welcome, "+name+"!"
  5.     print "The objective of this game is to collect cookies."
  6.     print "After collecting the cookies you eat them."
  7.     choice = raw_input("Do you want to play Yes/No?")
  8.     if choice == "Yes":
  9.             begin()
  10.     if choice == "No":
  11.             print "Okay, bye!"
  12. def begin():
  13.     global cookies
  14.     print "Let's do this!"