Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import math
  2. import turtle
  3. import random
  4.  
  5. wn = turtle.Screen()
  6. wn.bgcolor('lightyellow')
  7.  
  8. fred = turtle.Turtle()
  9. fred.penup()
  10. fred.speed(0)
  11.  
  12. for i in range(10000):
  13. x = random.randint(-300,300)
  14. y = random.randint(-300,300)
  15. fred.goto(x,y)
  16. if x*x + y*y <= 300*300:
  17. fred.dot("red")
  18. else:
  19. fred.dot("blue")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement