十一、for循环(有限循环)
摘要:
结构: for 变量 in iterable pass 比如: s1 = '老男孩教育最好的讲师:太白'for i in s1: print(i) #结果仍为把“老男孩教育最好的讲师:太白”竖着输出 中断 :break break 、continue与while一样 for else 与while 阅读全文
posted @ 2019-05-03 22:43 雨后清明 阅读(379) 评论(0) 推荐(0) 编辑