Question: note: please solve using python and make a single or multiple threads. Lab Exercises: Write a function that will play Rock, Paper, Scissors with itself.

note: please solve using python and make a single or multiple threads.
Lab Exercises: Write a function that will play Rock, Paper, Scissors with itself. It will pick two random elements from a list. Then the function must know if random element #1 won, lost or drawed. The list is rps=['rock', 'paper', 'scissors'] 1. Then the function must add to a dictionary the number of times the first element won per option in the list. Example { 'rock':'400', 'paper':'300', 'scissors':'300' } You need to run this at least 1000 times. You can either create a single thread, or you can create multiple threads. You need to use the random module and the random.choice(LISTNAME) to pick a random element from a list.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!