python中遍历集合的方法:
1、使用for循环遍历
A={'1','2','star'} foriteminA: print(item,end='')
Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。
2、使用while循环遍历
##用while循环遍历 A={'1','2','star'} try: whileTrue: print(A.pop(),end='') except: pass
Python 编程中 while 语句用于循环执行程序,即在某条件下,循环执行某段程序,以处理需要重复处理的相同任务。
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容