摘要: while语句延续 # while与else使用 while … else 在循环条件为 false 时执行 else 语句块 count = 0 while count < 5: print(count) count += 1 else: print(count) 无限循环和while嵌套 如果w 阅读全文
posted @ 2022-03-08 20:27 槐序八 阅读(99) 评论(0) 推荐(0)