使用 while 循环实现输出 1,2,3,4,5, 7,8,9, 11,12;
a = 0 while a<13: a += 1 if a == 10: continue print(a)
原文地址:https://www.cnblogs.com/riling/p/10068830.html
时间: 2024-10-18 02:14:56
使用 while 循环实现输出 1,2,3,4,5, 7,8,9, 11,12;
a = 0 while a<13: a += 1 if a == 10: continue print(a)
原文地址:https://www.cnblogs.com/riling/p/10068830.html