User:-Python turtle graphics-/red house: Difference between revisions
Luisa Moura (talk | contribs) No edit summary |
Luisa Moura (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==red house== | ==red house== | ||
[[File:Red house.jpg]] | |||
<source lang="python"> | <source lang="python"> |
Latest revision as of 08:02, 7 October 2013
red house
<source lang="python">
import turtle
import random
import math
lado=a=b=50
c = math.sqrt(a**2+b**2)
turtle.color('red')
def house():
turtle.forward(lado)
turtle.left(135)
turtle.forward(c)
turtle.right(90)
turtle.forward(c/2)
turtle.right(90)
turtle.forward(c/2)
turtle.right(90)
turtle.forward(c)
turtle.right(135)
turtle.forward(lado)
turtle.right(90)
turtle.forward(lado)
turtle.right(90)
turtle.forward(lado)
turtle.left(90)
print house()