位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > Python > 問(wèn)題詳情

在python中如何畫圓?

提問(wèn)人:楊紫紅發(fā)布時(shí)間:2020-11-18

import turtle      #引進(jìn)海龜,你可以開(kāi)始使用它

myColor=["red","green","brown"]

index =0

for x in range(250):

    turtle.pencolor(myColor[index])

    index +=1

    if index == 3:

        index = 0


    turtle.forward(x*2)

    turtle.left(92)

image.png

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部