Explore
Courses
Batches
Sketches
Statistics
Code a Pookkalam
Jobs
Devsprint
People
Course Creation
Create a Course
Guidelines
Resources
Support
Blogs
My Profile
About Us
Login
Sketches
0
New Sketch
By
Nadeem
Run
def random_circle(): x = random(-150, 150) y = random(-150, 150) r = random(50) return circle(x=x, y=y, r=r, fill="white", stroke=random_color(), a=0.5) def random_color(): r = random(255) g = random(255) b = random(255) return color(r=r, g=g, b=b, a=0.5) for i in range(1000): c = random_circle() show(c)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login