Python的循环结构(二)
摘要:
Python的循环结构(一) 高级循环 1.for循环 通过遍历一个可迭代对象来作为循环的基础,当遍历对象完成时,循环也就结束。 例:遍历列表 list1 = [1,2,4,8,16] str1 = 'Hello world' for item in list1: print(item, end=' 阅读全文
posted @ 2022-04-05 19:51 成果和地方 阅读(11) 评论(0) 推荐(0) 编辑