Python知识学习04——循环 发表于 2018-06-23 | 分类于 程序人生 > Python > Python基础 本文字数: 437 | 阅读时长 ≈ 1 分钟 while循环比如:打印1-10 1234a = 1while a <= 10: print(a) a += 1 这里补充一个Python使用Print()函数输出,实现不换行的方式: 1234a = 1while a <= 5: print(a, end = "") a += 1 小练习:使用Python的while循环打印99乘法表 123456789a = 1b = 1while a <= 9: while b <= a: print("{} * {} = {}".format(b, a, a * b), end = "\t") b += 1 b = 1 a += 1 print("") for循环初见123name = "Tom"for temp in name: print(temp)