Advertisement
DerioFT

Derio Fernand Teddy

Jul 21st, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. # Nama = Derio Fernand Teddy
  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. #my drawings
  12. bob.left(90)
  13. bob.forward(80)
  14. bob.left(120)
  15. bob.forward(160)
  16. bob.left(150)
  17. bob.forward(145)
  18. bob.forward(137)
  19. bob.left(151)
  20. bob.forward(165)
  21. bob.left(119)
  22. bob.left(40)
  23. bob.forward(105)
  24. bob.up()
  25. bob.goto(0,80)
  26. bob.right(80)
  27. bob.down()
  28. bob.forward(105)
  29. bob.left(40)
  30. bob.goto(-139,0)
  31. bob.forward(170)
  32. bob.left(90)
  33. bob.forward(282)
  34. bob.left(90)
  35. bob.forward(170)
  36. bob.goto(0,0)
  37. bob.right(180)
  38. bob.forward(170)
  39.  
  40.  
  41.  
  42. input()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement