Commit f3d48964 by BellCodeEditor

save project

parent 5f063fa0
Showing with 6 additions and 2 deletions
import random
option = input("enter (rock/paper/scissors): ")
print("player390 has thrown a "+option)
\ No newline at end of file
print("player390 has thrown a "+option)
list = ["rock","paper","scissors"]
computer = random.choice(list)
print("Computer has thrown a "+computer)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment