Advertisement
Guest User

flappy bird

a guest
Apr 6th, 2020
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. import turtle
  2.  
  3. wn = turtle.Screen()
  4. wn.title("Flappy bird")
  5. wn.bgcolor("blue")
  6. wn.setup(width=500, height=800)
  7.  
  8. player = turtle.Turtle()
  9. player.speed(0)
  10. player.penup()
  11. player.color("yellow")
  12. player.shape("turtle")
  13. player.shapesize(stretch_wid=3, stretch_len=3, outline=None)
  14. player.goto(-200, 0)
  15. player.dx = 0
  16. player.dy = 0
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31. wn.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement