循环语句 While循环 # 循环语句 i=1 while i<=100: print(i) i+=1 Continue Break 函数 函数参数 位置参数 关键字参数:print(‘hello’,end=’ ’) 函数返回值: 相关文章: