this is what i came up with (in this game you always loose =) and u cant win hehe)
- Code: Select all
# Rock paper scissor game
from time import sleep
print "Please select: "
print "1 Rock"
print "2 Paper"
print "3 Scissors"
# Get Player's choice
player = input ("Choose from 1-3: ")
# Decide what the computer will choose
if player == 1:
print "You choose Rock"
sleep (2)
print "CPU chooses Paper"
print "You loose, and you will never win!"
elif player == 2:
print "You choose Paper"
sleep (2)
print "CPU chooses Scissors"
print "You loose, and you will never win!"
else:
print "You choose Scissors"
sleep (2)
print "CPU chooses Rock"
print "You loose, and you will never win!"