why do I keep getting "r" in results instead of "0" when I type r or R in input?
from random import randint
# Input
print("Rock: R Paper: P Scissors: S")
x = input("Please pick your choice: ")
y = randint(0,2)
if x.lower() == "r":
x == 0;
print("value entered ", x, "value generated ", y)