Advertisement
Ulabael

Python Turtle Star

Feb 14th, 2023
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. from turtle import*
  2.  
  3. speed(0)
  4. #размер,цвет,х,у
  5. def star(a,d,x,y):
  6. goto(x,y)
  7. color(d)
  8. begin_fill()
  9. for i in range(5):
  10. forward(a)
  11. left(144)
  12. end_fill()
  13. color("white")
  14.  
  15. color("dark blue")
  16. goto(-200,200)
  17. begin_fill()
  18. goto(200,200)
  19. goto(200,-200)
  20. goto(-200,-200)
  21. goto(-200,200)
  22. end_fill()
  23.  
  24. # Рисуем звёздочку. Для этого указываем размер, цвет, координаты x, y
  25. star(20, "red", 100, 100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement