赞
踩
一:for循环
for i in range(101): print(i)
二:while循环
i = 0while i<101: print(i) i+=1
无限输出:
i = 100while i<101: print(i)