Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. import turtle
  2.  
  3. turtle.speed(7)
  4.  
  5. turtle.up()
  6. turtle.goto(-170,-150)
  7. turtle.down()
  8.  
  9. t=1
  10.  
  11. while t<5:
  12.  
  13. t=t+1
  14.  
  15. turtle.color("black","black")
  16. turtle.begin_fill()
  17.  
  18. #building
  19. turtle.fd(60)
  20. turtle.lt(90)
  21. turtle.fd(300)
  22. turtle.lt(90)
  23. turtle.fd(60)
  24. turtle.lt(90)
  25. turtle.fd(300)
  26. turtle.rt(90)
  27.  
  28. turtle.end_fill()
  29.  
  30. #side shadow
  31.  
  32. turtle.color("black","green")
  33. turtle.begin_fill()
  34.  
  35. turtle.rt(30)
  36. turtle.fd(20)
  37. turtle.rt(60)
  38. turtle.fd(300)
  39. turtle.rt(120)
  40. turtle.fd(20)
  41.  
  42. turtle.end_fill()
  43.  
  44. #top shadow
  45.  
  46. turtle.color("black","blue")
  47. turtle.begin_fill()
  48.  
  49. turtle.rt(-30)
  50. turtle.fd(60)
  51. turtle.lt(180)
  52. turtle.rt(30)
  53. turtle.fd(20)
  54. turtle.lt(30)
  55. turtle.fd(60)
  56.  
  57. turtle.end_fill()
  58.  
  59. turtle.lt(150)
  60. turtle.fd(20)
  61. turtle.rt(60)
  62. turtle.fd(300)
  63. turtle.lt(90)
  64.  
  65. turtle.pu()
  66. turtle.fd(100)
  67. turtle.pd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement