This commit is contained in:
2026-03-11 23:19:32 +00:00
commit 18ef09f8c0
5 changed files with 242 additions and 0 deletions

37
house.py Normal file
View File

@@ -0,0 +1,37 @@
import turtle
t = turtle
t.pensize("8")
t.color("pink")
t.shape("turtle")
t.penup()
t.right(135)
t.fd(50)
t.pendown()
t.circle(200 , steps = 4 )
t.rt(45)
t.color("blue")
t.fd(25)
t.rt(120)
t.fd(325)
t.rt(120)
t.fd(325)
t.right(120)
t.fd(150)
t.penup()
t.lt(90)
t.fd(25)
t.color("green")
t.fd(100)
t.pendown()
t.rt(90)
t.fd(50)
t.lt(90)
t.fd(150)
t.lt(90)
t.fd(100)
t.lt(90)
t.fd(150)
t.lt(90)
t.fd(50)