for i in range(1, 10):
for j in range(1, i + 1):
print(j, '*', i, '=', i * j, end=" ") #end= 以。。。结尾
print()
相关文章
- 11-29python – 使用Itertools的等效嵌套循环结构
- 11-29初学者习题练习。从控制台输入一个数n,使用for循环实现求n! 提示:n! =n*(n-1)*(n-2)*…*1 升级:求1!+2!+3!+…+n!的值
- 11-29python – 在不使用循环的情况下将多行插入数据库
- 11-29初学python(print使用、条件分支、循环、模块引用)
- 11-29[Python]Python 使用 for 循环的小例子
- 11-29使用Python循环插入10万数据
- 11-29遍历某一个标签中的内容;python+selenium定位到列表整体,使用for循环获取列表文本;可用于校验列表是否存在你需要的文本内容
- 11-29python中while循环使用标志
- 11-29python初学者-使用for循环做一个九九乘法表
- 11-29python-如何重写递归函数以使用循环?