Python的海龟绘图法小知识
这个图是不是很炫? 而且代码很短,先看一下代码:
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Python中的海龟绘图法需要调用turtle的库,你可以试试哦 很强大的呦