单项选择题

执行下列Python程序,输出结果是什么? c = 0 for i in “hello world!”: if i == ‘o’ : c = c + 1 print(c)

A、0
B、2
C、3
D、True