摘要: while循环: 1.while+continue # 使用循环打印出0-9的数字 # count = 0 # while count < 10: # print(count) # count += 1 # 使用循环打印出0-9的数字,但是不打印3 count = 0 while count < 1 阅读全文
posted @ 2021-12-28 15:30 morningstar999 阅读(149) 评论(0) 推荐(0)