第25346题 单选
下面Python代码执行后输出的是( )。
import turtle
for i in range(4):
    turtle.left(180)
    if i % 2 == 0:
        turtle.color("red")
    else:
        turtle.color("blue")
    if i < 2:
        turtle.circle(25)
    else:
        turtle.circle(50)
A

选项A

B

选项B

C

选项C

D

选项D

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析