Dummy

By Viswanatha Kartha V

        
Comments
Anand Chitipothu
2 years ago
Post
Dismiss
Nice. You could improve your program by writing a function to draw rings and and then call it once for each set of rings. ``` def draw_rings(x, y, stroke): # your code draw_rings(x=-100, y=0, "green") draw_rings(x=100, y=0, "green") draw_rings(x=0, y=100, "green") ... ```
Nice. You could improve your program by writing a function to draw rings and and then call it once for each set of rings. ``` def draw_rings(x, y, stroke): # your code draw_rings(x=-100, y=0, "green") draw_rings(x=100, y=0, "green") draw_rings(x=0, y=100, "green") ... ```
Want to discuss?
Post it here, our mentors will help you out.