输出10以内除7外的其它所有数

import time

count = 0
while count<10:
count = count + 1
if count==7:
continue
print(count)

猜你喜欢

转载自www.cnblogs.com/20190308-zlz/p/zlz-while.html