Rock, Paper, Scissors Game

Hello. I made a rock, paper, scissors game (player vs. computer) for the “Introduction to programming” final project. The player must choose between rock, paper or scissors from a menu, and then the computer make its choice randomly, thanks to the random() library.
Once the corresponding choices have been made, the results are compared and it is determined which of the two players has won, or if there has been a tie. Afterwards, the user is asked if he wants to continue playing. If so, the above process is repeated. If not, the total score is displayed and the program is terminated.

Link to Github:
https://github.com/cristianmp80/rock-paper-scissors

Link to play the game:
https://replit.com/@Cristianmp80/Rock-paper-scissors?v=1

I like how you used the player class to display the total score when the player exits the game.