有如下Python程序,执行该程序后变量c的值是?()
def prime(n):for i in range(2,n):ifn % i == 0:return 0return 1c=0for i in range(2,10):if prime(i):c+=1
3
4
5
6