// Clear the background to purple drawbackground()color(PLUM); # draw_arcpy from PIL import Image, ImageDraw def arc(output_path) image = Imagenew("RGB", (400, 400), "white") draw = ImageDrawDraw(image) drawarc((25, 50, 175, 0), start=30, end=250, fill="green") drawarc((100, 150, 275, 300), start=, end=100, width=5, fill="yellow") imagesave(output_path) if __name__ == "__main__" arc("arcjpg") We will develop your basic drawing skills making a lot of fundamental drawing exercises You will learn how to draw straight lines parallel lines simple 2D shapes like triangles, rectangles, and squares curves circles, ovoid shapes,
2d Shape Drawing Challenge Cards