{}

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →
run-icon
main.py
import random AI = random.choice(["rock", "paper", "scissors"]) #all code made by Joel or ThatOneDev-studio while True: PL = input("Let's play rock paper scissors! Pick a choice and press enter! ") if PL == AI: print("Tie") elif PL == "rock" and AI == "paper": print("Win") elif PL == "paper" and AI == "rock": print("Win") elif PL == "scissors" and AI == "paper": print("Win") else: print("Lose")
Output