Python Forum
Problem with Basic Rock Paper Scissors code - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Problem with Basic Rock Paper Scissors code (/thread-21092.html)



Problem with Basic Rock Paper Scissors code - BirinderSingh - Sep-13-2019

Guys I just started with python a couple days back, and today finally sat down to write a code for Rock Paper Scissors.

The code abruptly ends after just executing game() function. Many other codes I checked closely resembled mine, but they worked and my doesn't. The problem seems to be with the Randomization, since in my testing everything works except for it. Any help would be greatly appreciated. I know the code is a bit too long for such a simple game, but i don't need to know how to shorten it (will save it for later), just what is causing the problem right now.

Thanks

from os import system, name

from time import sleep

from random import randint

rps = None

cpu = None

ai = None


def strt():
    print("Rock Paper Scissors")

    sleep(1)


def game():

    global rps

    global cpu

    global ai

    rps = input("Choose Rock (r), Paper (p), or Scissors (s)")

    if rps != "r" and rps != "p" and rps != "s":
        print("Invalid function, starting over...")
        sleep(1)
        game()

    else:

        cpu = randint(1, 3)

        ai = cpu

        if cpu == "1":
            ai = "r"

        elif cpu == "2":
            ai = "p"

        elif cpu == "3":
            ai = "s"

        decision()


def decision():
    if rps == ai:
        print("Decision Neutral")
        game()

    elif rps == "r":
        if ai == "s":
            print("you win")
        elif ai == "p":
            print("you lose")

    elif rps == "p":
        if ai == "s":
            print("you lose")
        elif ai == "r":
            print("you win")

    elif rps == "s":
        if ai == "r":
            print("you lose")
        elif ai == "p":
            print("you win")


strt()

game()



RE: Problem with Basic Rock Paper Scissors code - ichabod801 - Sep-13-2019

  • Your randomization isn't working because randint returns an int, and you are comparing that to strings.
  • Better would be random.choice('rps'), it just gives you what you need in one line.
  • Globals lead to confusing and hard to maintain code. Pass parameters and assign return values. See the function tutorial for more details.
  • For multiple comparisons in is often [the best choice: if rps not in ('r', 'p', 's'):.
  • RPS is a great place to learn dictionaries instead of complicated if/elif/else:

wins = {'r': 's', 'p': 'r', 's': 'p'}
if rps = ai:
    print('tie')
elif wins[ai] == rps:
    print('win')
else:
    print('loss')



RE: Problem with Basic Rock Paper Scissors code - BirinderSingh - Sep-13-2019

(Sep-13-2019, 12:40 PM)ichabod801 Wrote:
  • Your randomization isn't working because randint returns an int, and you are comparing that to strings.
  • Better would be random.choice('rps'), it just gives you what you need in one line.
  • Globals lead to confusing and hard to maintain code. Pass parameters and assign return values. See the function tutorial for more details.
  • For multiple comparisons in is often [the best choice: if rps not in ('r', 'p', 's'):.
  • RPS is a great place to learn dictionaries instead of complicated if/elif/else:
 wins = {'r': 's', 'p': 'r', 's': 'p'} if rps = ai: print('tie') elif wins[ai] == rps: print('win') else: print('loss') 

Hello sir!
You said I was comparing an integer to a string, and that was causing problem. This has happened with me before. I'm almost too new, could you please tell how to compare integer to integer? Please just send me the correction of that part, since I don't know how to do any other corrections you told. Thank you!


RE: Problem with Basic Rock Paper Scissors code - ichabod801 - Sep-13-2019

You just use integer literals (without quotes) instead of string literals (with quotes):

        cpu = randint(1, 3)
 
        ai = cpu
 
        if cpu == 1:
            ai = "r"
 
        elif cpu == 2:
            ai = "p"
 
        elif cpu == 3:
            ai = "s"
But, note that random.choice will pick a random item out of a sequence, even a string. So all of the above code could be replaced with this one line:

ai = random.choice('rps')