Python3 循环

Posted 因为专注。所以专业

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 循环相关的知识,希望对你有一定的参考价值。

L = [\'Bart\', \'Lisa\', \'Adam\']
for i in L:
	print("这是for循环的" + "输出 hello:" + i.upper())

i = 0
while i < len(L):
	print("这是while 循环的输出 hello:" + L[i])
	i = i + 1

 

以上是关于Python3 循环的主要内容,如果未能解决你的问题,请参考以下文章

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

常用python日期日志获取内容循环的代码片段

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

使用 Python3 gstreamer1.0 和 pylonsrc 使用 basler 相机和 pylon5 在处理循环中出现错误

AVKit – 视频片段仅循环 2 次