User:-Python turtle graphics-/flower hexagon: Difference between revisions
Luisa Moura (talk | contribs) (Created page with "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(...") |
Luisa Moura (talk | contribs) No edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==flower hexagon== | |||
[[File:Flower hexagon.jpg]] | |||
<source lang="python"> | |||
import turtle | import turtle | ||
Line 17: | Line 23: | ||
def drawing(size): | def drawing(size): | ||
for i in range( | for i in range(18): | ||
print hexagon(60,size) | print hexagon(60,size) | ||
turtle.left( | turtle.left(20) | ||
Line 33: | Line 39: | ||
turtle.color(random.randint(0,1),random.randint(0,1),random.randint(0,1)) | turtle.color(random.randint(0,1),random.randint(0,1),random.randint(0,1)) | ||
turtle.width(random.randint( | turtle.width(random.randint(1,2)) | ||
turtle.exitonclick() | turtle.exitonclick() |
Latest revision as of 08:11, 7 October 2013
flower hexagon
<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()