Pythone:基本功之for循环和while循环,通透理解for循环,走遍天下都不怕
java中循环语句有三种: for循环 for each循环 和while循环python中只有两种 for in 循环 和while循环都是差不多的,for each 和 python中的 for in都是为快速遍历某个容器而生的 下面就来讲解这些循环的基本语法:students = ['小明','小李','小张']for studentName in students: pr