Move functions for Mesh grid
问题 Our assignment is to create a mesh grid, with a cursor(+) that moves(up, down, right, left) apon command. I have the grid and the fuctions done, but i'm having trouble getting my move function's to work, along with the updated grid to show. Example of what I need the code to look like. This is my code: x = y = 0 size = int(input('Enter grid size: ')) print(f'Current location: ({x},{y})') def show_grid(x, y): for i in range(size): for j in range(size): if i == y and j == x: print('+', end=' ')