摘要: 今日内容概要 while+continue # 1.使用while循环打印出0-10 # count = 0 # while count < 11: # print(count) # count += 1 # 2.使用while循环打印出0-10但是不打印4 count = 0 while coun 阅读全文
posted @ 2021-11-05 17:58 特烦恼 阅读(47) 评论(0) 推荐(0)