x=10while x:if x%2:continueelse:print(x,end='')x-=1
x=10while x:if x%2:x-=1continueelse:print(x,end='')x-=1
两个得到的结果不一样,为什么呀?还要为什么要加上那个条件
格式错误