Advertisement
Jorell_Ramos_Sinaga

ramos komputer 1 :]

Jul 21st, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. # Nama      : Jorell Ramos Sinaga
  2. # Tanggal   : 21-07-2020
  3. # Project   : Turtle101
  4.  
  5. import turtle
  6.  
  7. bob = turtle.Pen()
  8. turtle.bgcolor("silver")
  9. bob.shape("turtle")
  10.  
  11. #mydrawings
  12. bob.color("gold")
  13. bob.up()
  14. bob.goto(50,100)
  15. bob.down()
  16. bob.circle(50)
  17. bob.up()
  18. bob.goto(100,50)
  19. bob.down()
  20. bob.color("cyan")
  21. bob.circle(50)
  22. bob.up()
  23. bob.goto(50,0)
  24. bob.color("pink")
  25. bob.down()
  26. bob.circle(50)
  27. bob.up()
  28. bob.goto(0,50)
  29. bob.color("lime")
  30. bob.down()
  31. bob.circle(50)
  32. input()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement