Skip to content

Instantly share code, notes, and snippets.

@odarbelaeze
Created May 19, 2014 23:03
Show Gist options
  • Save odarbelaeze/fccd7f7fcf233cf4ab5c to your computer and use it in GitHub Desktop.
Save odarbelaeze/fccd7f7fcf233cf4ab5c to your computer and use it in GitHub Desktop.
side x side boards of zeros with python
side = 5
for i in range(side):
for j in range(side):
print 0, " ", # La última coma es para evitar el salto de linea
print ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment