使用turtle库绘制同心圆图形,效果如下图所示。阅读程序框架.补充横线处代码。 (①) def DrawCctCircle(n): t.penup() t.goto(0,一n) t.pendown() (②) for i in range(20,100

admin2019-09-02  33

问题 使用turtle库绘制同心圆图形,效果如下图所示。阅读程序框架.补充横线处代码。

()
def DrawCctCircle(n):
t.penup()
t.goto(0,一n)
t.pendown()
()
for i in range(20,100,20):
DrawCctCircle(i)
t.hideturtle()
t.done()

选项

答案import turtle as t def DrawCctCircle(n): t.penup() t.goto(0,一n) t.pendown() t.circle(n) for i in range(20,100,20): DrawCctCircle(i) t.hideturtle() t.done()

解析
转载请注明原文地址:https://kaotiyun.com/show/9N6p777K
0

相关试题推荐
随机试题
最新回复(0)