Advertisement
amv1991

Desenhando o logotipo do Facebook

Aug 24th, 2021
1,810
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.73 KB | None | 1 0
  1. import turtle
  2. from turtle import Screen
  3.  
  4. s = Screen()
  5. s.bgcolor('white')
  6.  
  7. a = turtle.Turtle()
  8. a.shape('arrow')
  9. a.pensize(7)
  10. a.color('blue')
  11.  
  12. a.begin_fill()
  13. a.circle(140, 360)
  14. a.end_fill()
  15. a.right(7)
  16. a.backward(32)
  17. a.color('white')
  18. a.pensize(3)
  19. a.begin_fill()
  20. a.left(97)
  21. a.forward(98)
  22. a.left(90)
  23. a.forward(40)
  24. a.right(90)
  25. a.forward(40)
  26. a.right(90)
  27. a.forward(40)
  28. a.left(90)
  29. a.forward(34)
  30. a.circle(-45,90)
  31. a.forward(40)
  32. a.right(90)
  33. a.forward(40)
  34. a.right(90)
  35. a.forward(20)
  36. a.circle(17,90)
  37. a.forward(23)
  38. a.left(90)
  39. a.forward(40)
  40. a.right(90)
  41. a.forward(40)
  42. a.right(90)
  43. a.forward(40)
  44. a.left(90)
  45. a.forward(108)
  46. a.right(90)
  47. a.forward(48)
  48. a.right(90)
  49. a.forward(8)
  50. a.end_fill()
  51. a.hideturtle()
  52. turtle.done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement