Skip to content

Instantly share code, notes, and snippets.

@nattybear
Created March 28, 2017 15:45
Show Gist options
  • Select an option

  • Save nattybear/cbc473762e8c7d8cc8f7f7686193a6d7 to your computer and use it in GitHub Desktop.

Select an option

Save nattybear/cbc473762e8c7d8cc8f7f7686193a6d7 to your computer and use it in GitHub Desktop.
for i in range(2, 10, 2):
for j in range(1, 10):
if j <= i:
print('%d X %d = %d' % (i, j, i*j))
else:
continue
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment