会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
peijiao
On the road
博客园
首页
新随笔
联系
订阅
管理
2022年2月12日
python基础练习题之99乘法表
摘要: """99乘法表"""# a = range(10) # 可迭代对象for i in range(1, 10): # print(i) # 行数 for j in range(1, i+1): # print("列数:", j) print("%s * %s = %-2s" % (j, i, j*i
阅读全文
posted @ 2022-02-12 09:06 peijiao
阅读(100)
评论(0)
推荐(0)
编辑