User:Luisa Moura/prototyping/python/turtle

From XPUB & Lens-Based wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Flower hexagon.jpg

<source lang="python">

import turtle

import random

def hexagon(angle,size):

angle=60

for i in range(6):

turtle.forward(size)

turtle.left(angle)

def drawing(size):

for i in range(18):

print hexagon(60,size)

turtle.left(20)

while(1):

print drawing(random.randint(40,100))

turtle.color(random.randint(0,1),random.randint(0,1),random.randint(0,1))

turtle.width(random.randint(1,2))

turtle.exitonclick()