Coal, Wrapping Paper, Scissors
Coal, Wrapping Paper, Scissors
Create a 'coal, wrapping paper, scissors' game which is run against the computer. This is a came where you select either coal, wrapping paper, or a scissors.
You compare it to your opponent's choice.
Rules
Coal beats scissors
Wrapping paper beats coal
Scissors beat wrapping paper
If you both choose the same, the it's a draw
You will need to generate a random number for this
Don't forget to import random to help you
See the previous day
This will represent the computer
choices = ["coal","wrapping paper","scissors"]
Now you need to use selection and you need input for your own choice
Then do the comparison
Extra 10 points to your bonus if you can try iteration
And get it to work for 3 goes only