Write a function change_player_char(board, player, new_char) which changes the character that a player is using in a partially-complete game of noughts-and-crosses. The parameters are as follows: board is a list of three rows, where each row is a list of three one-character strings, each being either ‘O’, ‘X’ or ‘.’, where ‘.’ represents an emptyRead more