$tic_tac_toe is a two-dimensional array of 3 x 3 cells. How would you place an X in the center cell? code example
Example: how to get a rectangular grid out of two given one-dimensional arrays
import numpy as np
np.meshgrid(list1, list2)
import numpy as np
np.meshgrid(list1, list2)