You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

heart.py 393B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
123456789101112131415161718192021
  1. from turtle import Turtle
  2. def draw_heart(turtle):
  3. turtle.left(40)
  4. turtle.forward(178)
  5. turtle.circle(90,200)
  6. turtle.right(120)
  7. turtle.circle(90,200)
  8. turtle.forward(178)
  9. sophia = Turtle()
  10. sophia.screen.bgcolor('Black')
  11. sophia.pencolor('Red')
  12. sophia.fillcolor('Red')
  13. sophia.begin_fill()
  14. draw_heart(sophia)
  15. sophia.end_fill()
  16. sophia.hideturtle()
  17. sophia.screen.mainloop()