What would be a correct way to ask for the spelling of “Comp…
Questions
Whаt wоuld be а cоrrect wаy tо ask for the spelling of “Computer”?
Write а Pythоn prоgrаm thаt will allоw a user to play Pictsie Sticks Game. There are 20 sticks on a game board: During every turn, a player can take one, three or five sticks from the board. A player may not take more sticks than are present. After each player’s turn, there is a chance that 1 to 4 sticks will be magically added back to the board. The player who took the last stick, loses. If a player takes the last stick, and then some are magically added back, they do not lose, and the game continues. Program Requirements Your program must contain exactly five functions, and they should appear in the same order as specified 1. not_quite_right Parameters: One integer representing the number of sticks on the board Returns: The number (as an integer) of sticks which should be added back to the board Description: This function takes the number of sticks on the board as a parameter and returns the number of sticks which should be added back to the board. There is a 60% chance that 1-to-4 sticks are added back to the total number of sticks in play; 40% chance that zero are added. This function cannot return a number which would cause there to be more than 20 sticks on the board, the number returned should be capped so only 20 sticks are in play. A flowchart of this function is included at the end of the write-up. 2. display_board Parameters: The number of sticks on the board Returns: Nothing Description: This function takes the number of sticks on the board as a parameter and prints out the board as shown below: 3. get_sticks_to_take Parameters:1. The current player whose turn it is in the game.2. The number of sticks on the board. Returns: The number of sticks that the given player will take from the board. Description: this function takes two parameters, the current player and the number of sticks on the board and returns the number of sticks to be taken by the player. It prompts the player for the number of sticks they “take” from the board. If a player tries to take too many or too few sticks, the function should tell the player the appropriate number of sticks they may take and again prompt them for input. 4. display_summary Parameters:1. The current player2. Number of sticks taken by the player3. Number of sticks added by the not_quite_right function4. Number of sticks remaining on the board Returns: Nothing Description: This function takes four parameters, player number, sticks taken, sticks_added by not_quite_right and the number of sticks remaining. It will display a single line formatted like:Player took , pictsie shenanigans added back, leaving 5. main Parameters: None Returns: NothingThis function contains the main logic of the program, calling the other functions as required. main should minimally track who’s turn it is, the number of sticks on the board, determine the winner and contain the game loop alternating player turns,