第12198题 单选
下列Python循环代码运行后输出的图形是?
s=''
for i in range(3):
    for j in range(1,i+2,2):
        s = s + '*'
    print(s)
A
  • **
B



C

**

D

**