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
pookalam Pever
By
Ashik M
Run
class Grid: def grid_bg(): c = rectangle(h=300, w=300, fill="white") return c def background(): c = circle(r=150, fill="black") return c class Pookalam: def center(): c_1 = circle(r=10, x=0, y=0, fill="white", stroke_width=2) c_2 = circle(r=20, x=0, y=0, fill="yellow") c_3 = circle(r=30, x=0, y=0, fill="#43A047") c_4 = circle(r=40, x=0, y=0, fill="#1B5E20") c = combine([c_4, c_3, c_2, c_1]) return c """ def middle(): def last(): """ show(Grid.grid_bg(),Grid.background()) show(Pookalam.center())
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login