1.while 循环语句 #!/usr/bin/env python # -*- coding:utf-8 -*- import time bol = True while bol: print '1' time.sleep(1) bol = False print 'hello,world!' 2.无限的输出数字 #!/usr/bin/env python # -*- coding:utf-8 -*- import time n = 0 while True: n = n + 1 time.s…