下面Python代码执行后的输出是( )。
N =10
while N != 0:
N -= 1
if N % 3 == 0:
print(N,end='#')
9#6#3#
9#6#3#0#
8#7#5#4#2#1#
10#8#7#5#4#2#1#