While的简单用法
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import time
s1 = True
while s1 :
print ("你真屌")
time.sleep(1)
s1 = False
#循环到这里之后跳转到while行,不会跳转到更高的地方
print ("退出了你照样很屌")
While的简单用法
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import time
s1 = True
while s1 :
print ("你真屌")
time.sleep(1)
s1 = False
#循环到这里之后跳转到while行,不会跳转到更高的地方
print ("退出了你照样很屌")