首页 > 编程语言 > 详细

Python学习笔记(七)Python循环语句

时间:2019-02-13 21:02:39      阅读:119      评论:0      收藏:0      [点我收藏+]

1.死循环

   while 1==1:

  print("ok")

另一个例子

import time

while 1==1:

  print("ok",time.time())

 

count = 0

while count<10

  count=count+1

  print("ok",time.time())")

print(123)

 

Python学习笔记(七)Python循环语句

原文:https://www.cnblogs.com/zengtaoyunwei/p/10371618.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!