Guest User

Untitled

a guest
Oct 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.71 KB | None | 0 0
  1. !/usr/bin/python
  2. import time
  3. import random
  4. Yourname = raw_input("Hello, please put your name here: ")
  5. if Yourname.lower() == "tyrell":
  6.         print "Hello, Master"
  7.       else:
  8.         print "Hello" + Yourname
  9.     Yourgoal = raw_input("Please pick a number out of the following list: ")
  10.     if Yourgoal == "ok":
  11.         print "Option 1"
  12.         print "Option 2"
  13.     raw_input()
  14.     userChoice = int(raw_input("Please select an option, 1 or 2"))
  15.     while True:
  16.         if userChoice == 1:
  17.                print "You've chosen 1!, your the best!"
  18.                raw_input()
  19.                break
  20.         if userChoice ==2:
  21.                 print "You've chosen 2!, your inferior!"
  22.                 raw_input
Add Comment
Please, Sign In to add comment