运行下面程序,输出的结果是( )。
def func(x): for i in range(2, x): if x % i == 0: print(i, end = ' ') func(16)
2
2 4 8
1 2 4 8
2 4 8 16