摘要: Python_day3 1、列表 index = 0 while index < len(列表): 元素 = 列表[index] 对元素进行处理 index += 1 方法2: for 临时变量 in 数据容器: 对临时变量进行处理 while 循环可以控制循环条件,但是for循环不行 2、元组 元 阅读全文
posted @ 2023-10-04 19:56 lycheezhang 阅读(6) 评论(0) 推荐(0) 编辑