Untitled Python workspace
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner
    # Start coding here...
    
    grid=[]
    
    for i in range(0,10):
        for j in range(0,10):
            grid.append(0)
            
    print(grid)