Skip to content

Instantly share code, notes, and snippets.

@syshack
Created January 18, 2012 02:55
Show Gist options
  • Save syshack/1630573 to your computer and use it in GitHub Desktop.
Save syshack/1630573 to your computer and use it in GitHub Desktop.
另一个99表
#!/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),
print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment