Here is my code
user_action = input("enter rock, paper, or scissors: ")
possible_action = ["rock", "paper", "scissors"]
computer_action = random.choice(possible_action)
and it tells me that it's an invalid variable.
Am I doing something wrong or is it Pydroid's fault?