python2 99乘法表

for i in range(1, 10): for n in range(1, 1+i): print '%r × %r = %r \t ' % (n, i, n*i), print ('')
相關文章
相關標籤/搜索