以下 Python 代码执行后输出结果是( )
x = 9
while x>1:
x -= 2
if not x % 3:
print(x, end="")
else:
86420
975311
24680
7531