Python:使用turtle库绘制一个四瓣花图形
本帖最后由 划句顾 于 2021-6-8 17:12 编辑'''*****************************************************************************************************************
@author: LaoGu
@time: 2021/6/8
@fuction:使用turtle库的turtle.circle( )函数、turtle.seth( )函数和turtle.left( )函数绘制一个四瓣花图形
********************************************************************************************************************'''
from turtle import*
for i in range(4):
seth(90*(i+1))
circle(200,90)
seth(-90+i*90)
circle(200,90)
done()
PS:
绝对角度:seth()
turtle.seth(angle):只改变海龟的行进方向(角度按逆时针),但不行进,angle为绝对度数
上面的seth算得多少度就根据这个图来转换方向。
像这样
static/image/hrline/5.gif
点我了解更多 感觉好流弊的样子
页:
[1]