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

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 13  |  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. print("Welcome!")
  2. g = input("Guess the number: ")
  3. guess = int(g)
  4. if guess == 5:
  5.     print("You win!")
  6. else:
  7.     if guess > 5:
  8.         print("Too high")
  9.     else:
  10.         print("Too low")
  11.     print("You lose!")
  12. print("Game over!")