Saturday, July 27, 2019

Sun flower turtle

Script

#!/usr/local/bin/python3.7

from turtle import *

color('red', 'yellow')
begin_fill()
while True:
    forward(400)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()
done()


Execution

A beautiful sunflower gets generated

No comments:

Post a Comment