调用以下函数时,语句“s=s+i”被执行的次数是?( )
def f(): s=0 i=1 while i<10: if i%3==0 or s%2==1: s=s+i i=i+1 print(s)
3
4
5
6