求比 10 小且大于或等于 0的偶数,实现代码如下,空白处应填哪个选项?( )
x=10
while x:
x = x-1
if x%2 != 0:
________
print(x)
break
continue
yield
flag