Last active
August 29, 2015 14:13
-
-
Save 0532/08412a8c14f3ab440c94 to your computer and use it in GitHub Desktop.
9 * 9 乘法表
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
| # -*- coding: UTF-8 -*- | |
| for x in xrange(1,10) | |
| for y in xrange(1,x+1) | |
| print y,'*',x,'=',x*y,'\t', | |
| print '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment