Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. from turtle import *
  2. setup(1024,768, -2200,100)
  3.  
  4. color('green')
  5. width(5)
  6. fd(100)
  7. up()
  8. fd(100)
  9. down()
  10. color('red')
  11. right(45)
  12. backward(100)
  13. rt(45)
  14. fd(100)
  15. color('yellow')
  16. left(130)
  17. forward(150)
  18.  
  19. begin_fill()
  20. circle(20)
  21. end_fill()
  22.  
  23.  
  24. done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement