3036 . 单选题

下面 Python 代码执行后的输出是?

N = 9
for i in range(2, N):
    if N % i:
    print(1, end = "#")
else:
    print(0)