Created
March 28, 2017 15:45
-
-
Save nattybear/cbc473762e8c7d8cc8f7f7686193a6d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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