标签:python while循环 99乘法表
我是个Python的初学者,写的不好的地方,大家多多指教。
#!/usr/bin/env python
#coding:utf-8
i=1
while i<=9:
j=1
while j<=9:
print "%d*%d=%d" %(j,i,i*j),
if i == j :
break
j=j+1
print
i=i+1
本文出自 “linux学习成长过程” 博客,谢绝转载!
用Python做九九乘法表
原文地址:http://syuchen.blog.51cto.com/12570224/1899303