Help with Python Functions RPS
https://code.sololearn.com/c8a242A14A11 ^^^^^^^^^^^ Here is my code so far I'm just starting to learn functions I like how the code functions so far but I need to display each round show the comp and human choice and then display a score board after each round until the desired amount of rounds are complete and then at the end display game over + the winner and then at the very bottom play again Y for yes Q for quit like this we will pretend that the user selected to play 2 rounds ROUND 1 of 2 ------------------ [Choose Rock, Paper or Scissors] >Enter choice: rock ------------------------------------------------------ ** You picked ROCK, I picked PAPER, I win! ** ------------------------------------------------------ <SCOREBOARD> ---------------------- Computer: 1 You: 0 ROUND 2 of 2 [Choose Rock, Paper or Scissors] >Enter choice: PAPER ------------------------------------------------------ ** You picked PAPER, I picked SCISSORS, I win! ** ------------------------------------------------------ <SCOREBOARD> ---------------------- Computer: 2 You: 0 GAME OVER! I WIN Play again? Enter 'Y' for yes, 'Q' to quit game >>Q Goodbye!