for 循环打印 1 ~ 10 的数字for i in 数组: 代码块for 循环第一种使用方式,将集合的元素一个一个的进行获取打印nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]for i in nums: print(i)