Advertisement
Guest User

new

a guest
Apr 1st, 2020
1,313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. from turtle import*
  2. pen()
  3. begin_fill()
  4. color('yellow')
  5. circle(80)
  6. end_fill()
  7. up()
  8. left(90)
  9. forward(20)
  10. right(90)
  11. down()
  12. begin_fill()
  13. color('white')
  14. circle(60)
  15. end_fill()
  16. up()
  17. right(90)
  18. forward(90)
  19. right(90)
  20. forward(120)
  21. color('black')
  22. write("Circular Ring")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement