← 返回教程列表🐍 Python3 基础教程循环语句for 循环▶ 运行代码for i in range(5): print(i)while 循环▶ 运行代码count = 0 while count < 3: print(count) count += 1← 上一章:基础语法下一章:函数 →