有一种循环叫死循环,一经触发,就运行个天荒地老、海枯石烂
1 #coding=utf-8 2 count=0 3 while True: 4 print("你是风儿我是沙,缠缠绵绵到天涯。。。",count) 5 count+=1
其实除了时间,没有什么是永恒的,死loop还是少写为好
上面的代码循环100次就退出吧
1 #coding=utf-8 2 count=0 3 while True: 4 print("你是风儿我是沙,缠缠绵绵到天涯。。。",count) 5 count+=1 6 if count==100: 7 print("去你妈的风和沙。。。") 8 break
上面的代码循环再改一下,count=50至60的时候不打印
1 #coding=utf-8 2 count=0 3 while True: 4 count+=1 5 if count > 50 and count < 60: 6 continue 7 print("你是风儿我是沙,缠缠绵绵到天涯。。。",count) 8 count+=1 9 if count==100: 10 print("去你妈的风和沙。。。") 11 break
时间: 2024-10-27 13:34:17