摘要:
#continue的用法count = 0 while count < 10: count = count + 1 print(count) continue print(123) print('end') #break的用法count = 0 while count < 10: count = count + 1 print(count) ... 阅读全文
posted @ 2018-12-18 15:23
牙牙学语-
阅读(67)
评论(0)
推荐(0)
浙公网安备 33010602011771号