下面 Python 代码执行后的输出是?
N = 9 for i in range(2, N): if N % i: print(1, end = "#") else: print(0)
1#0
1#
1#1#1#1#1#1
1#1#1#1#1#1#0