Question: You are writing a program to implement a rock, paper, scissors game. The player selects one of the three items, and the computer randomly selects

You are writing a program to implement a rock, paper, scissors game. The player selects one of the three items, and the computer randomly selects one. Paper beats rock, rock beats scissors, and scissors beat paper. You first write some code to generate the computer's pick: import random computer pick = randem, choice ('rock', 'paper', 'scissors') This code does not work property. Why? Select the single answer that applies. We did not specify a value for k The choices need to written like this: 'rock paper scissors' for it to select one of them correctly random.choice takes a single argument which is a single collection Based on the import line, we should have said choice, not random.choice x= 'spam' def func (): x= 'egg' print (x) func () print (x) Select the statements below which apply. It prints egg on one line and spam on another line. The reference to the variable within the function finds the global The reference to the variable within the function finds the assigned local The return value of the function func () is egg
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
