You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user_choise = input("Enter Your choise, Rock, Paper, Sissor :").lower()
generate_choise = ["rock","paper","sissor"]
count = 0
# Generate computer choise
computer_choise = random.choice(generate_choise)
if user_choise == computer_choise:
print("Tie")
elif user_choise == "rock" and computer_choise == "sissor" or user_choise == "sissor" and computer_choise == "paper" or user_choise == "paper" and computer_choise == "rock":