这篇文章将为大家详细讲解有关python中有哪些常见的循环结构,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
Python是一种编程语言,内置了许多有效的工具,Python几乎无所不能,该语言通俗易懂、容易入门、功能强大,在许多领域中都有广泛的应用,例如最热门的大数据分析,人工智能,Web开发等。
1、for…in…
该格式在python中是最为常见的一种格式,使用极为广泛。
格式:for 参数 in 循环体: pass
在上面的格式中,有很多内容可以作为循环体,比如元组、列表、字符串等等。只要能穿越循环,就可以作为循环体存在。
其中参数主要用来存储每个循环体发送的单个元素,从而实现循环功能。在实践中,它经常与if判断语句结合使用。
#input str_01 = '时间都去哪了!!!' for i in str_01: print(i) #output 时 间 都 去 哪 了 ! ! !
2、while
while循环和for…in…循环的不同之处在于,while要先将循环变量初始化或者直接使用while True 这种死循环形式。
格式:i = 0 while i >=10: pass i +=1
#input while True: print('hello world!!!__hello python!!!') #output hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! hello world!!!__hello python!!! . . . . . .
关于python中有哪些常见的循环结构就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。