Suppose you are playing a different version of Rock, Paper, Scissors where the choices are rock, paper, scissors, and gorilla. The list of options now is larger. options = ["rock", "paper", "scissors", "gorilla"]
Complete the code for the computer to randomly choose an option.

from random import randint
compPlay = options[randint(__)]

A. (1, 4)
B. (0, 4)
C. (1, 3)
D. (0, 3)

Solved
Show answers

Ask an AI advisor a question