Skip to content

Instantly share code, notes, and snippets.

@beyoung
Last active December 27, 2015 20:19
Show Gist options
  • Save beyoung/7384068 to your computer and use it in GitHub Desktop.
Save beyoung/7384068 to your computer and use it in GitHub Desktop.
9*9
def V199():
seq=(1,2,3,4,5,6,7,8,9)
for i in seq:
row=''
for j in xrange(i):
row=row+'%s*%s=%s\t'%(i,j+1,i*(j+1))
print row
if __name__=='__main__':
V199()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment