Skip to content
Untitled Python workspace
# Stafort coding here...
grid = []
for variable in range(0,10):
for other_variable in range(0,10):
grid.append(0)
print(grid)