Skip to content

Instantly share code, notes, and snippets.

@gogsbread
Created January 4, 2013 03:38
Show Gist options
  • Save gogsbread/4449703 to your computer and use it in GitHub Desktop.
Save gogsbread/4449703 to your computer and use it in GitHub Desktop.
Funny algorithms - Printing grade school tables
def mulTables(n):
for i in range(1,n+1):
for j in range(1,n + 1):
print i * j,
print
if __name__ == '__main__':
mulTables(12)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment