I am trying to make a grid to store bool variables kinda like mine sweeper and i would like to find a better way So far i have a very inefficient way of just declaring like 15 lists with the values set to false like this
A = [False, False, False, False, False, False, False, False, False, False]
Is there a more efficient way to do this