Skip to content

Instantly share code, notes, and snippets.

@0532
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save 0532/08412a8c14f3ab440c94 to your computer and use it in GitHub Desktop.

Select an option

Save 0532/08412a8c14f3ab440c94 to your computer and use it in GitHub Desktop.
9 * 9 乘法表
# -*- 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