Created
January 18, 2012 02:55
-
-
Save syshack/1630573 to your computer and use it in GitHub Desktop.
另一个99表
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
#!/usr/bin/env python | |
#99表2 | |
for i in range(1,10): | |
for j in range(1,i+1): | |
print str(j)+"*"+str(i)+"="+str(i*j), | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment