I need help coding the game LCR (Left Center Right) in Python

Here are the rules of the game and what needs to be done:




Develop a program that follows the rules of Left Center Right (LCR) as described.

On program start-up, it shall display the rules to the user as read from a text file submitted with the program.

The user can then set up the game by entering the number of players. Any number below three shall ask the user to add more players.

Once gameplay has started based on the game rules, there are a few main pieces to address.

Rolling the die should be performed by randomly generating the side of the die displayed for each of the three using a random number generator.

For this game, if the generated number is 1, that will be L. Additionally, 2 is R, 3 is C,

and 4–6 are dots that can be represented with the asterisk symbol *.

Be sure to check the current player’s number of chips before rolling. After each p