02 流程控制之while循环
摘要:# 1、循环的语法与基本使用'''print(1)while 条件: 代码1 代码2 代码3print(3)''' # count=0# while count < 5: # 5 < 5# print(count) # 0,1,2,3,4# count+=1 # 5## print('顶级代码 >'
阅读全文
posted @ 2023-02-27 17:17
posted @ 2023-02-27 17:17
posted @ 2023-02-27 17:17