2023年9月电子学会青少年软件编程(Python一级)等级考试试卷
客观题
一级
2023
2023-10-17 10:48:39
57次
2023年9月电子学会青少年软件编程(Python一级)等级考试试卷
客观题
一级
2023
2023-10-17 10:48:39
57次
一、单选题
24.
小明想要绘制如图所示的图形,已知指令如下,大圆的半径为70,小圆的半径为50,请问横线处需要补充的指令依次是?( )

import turtle turtle.fillcolor(____) turtle.begin_fill() turtle.circle(____) turtle.end_fill() turtle.fillcolor(____) turtle.begin_fill() turtle.circle(____) turtle.end_fill() turtle.done()
| A. "red",70,"blue",50 |
B. "blue",70,"red",50 |
| C. "red",50,"blue",70 |
D. "blue",50,"red",70 |
【知识点】 电子学会Python一级

