运行以下代码,正确的打印结果是?( )
def f(): c=0 for i in range(4,51,4): if i%6==0: c=c+1 return c print(f())
1
2
4
8