© 1999-2048 dssz.net 粤ICP备11031372号
[其它] for循环和while循环的区别和简单应用
说明:for循环和while循环for循环for循环基本概念for循环的例子while循环while循环的概念while循环的例子 for循环 for循环基本概念 for循环可以从一个有序集合里依次把元素拿出来并且赋值给name,比如list,tuple和字符串。 for循环的例子 a = 'adbcd' #这是一个字符串 for name in a: print(name) >>>a d b c d #依次把adbcd打印出来 注意 这是依次不是一起 list<weixin_38571449> 上传 | 大小:40kb