startup = 0
r = rock
p = paper
s = scissors
if startup == 0:
weapon = str(input("Please enter your weapon: Rock, Paper, or Scicors")
while weapon =! r:
print("Incorrect choice, please choose again")
Im running python 3.2.2. Im trying to make rock paper scissors. I am trying to get the if statement to startup and print the str weapon. and within that i have a while loop (where the error is on the while) and i want that to print and loop back to the toop if something other than rock, paper, or scissors is inputted. any suggestions?