0
matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
]
matrix[0][0] = ''

My goal is to get the user to change the matrix and using the original matrix as a navigational system for the user to choose which part they want to change. But it has to be blank when the user sees it.

[    ]
[    ]
[    ]

if possible also not show the comas

  • "But it has to be blank when the user sees it." You are in control of what "the user sees", according to what is passed to `print`. You need to come up with rules that tell how to translate the *actual contents of the list*, into *text that will be shown*. When you `print` a list normally, Python uses a built-in rule for this, which is different from the rule you want. – Karl Knechtel Sep 02 '22 at 06:41

0 Answers0