I drew a doughnut with sprinkles and a star. The two problems I found were making the sprinkles and filling the star. The problem with it was figuring out the right coordinates.
#creates turtleimport turtlebruh = turtle.Turtle()bruh.speed(10)turtle.bgcolor('blue')bruh.goto(-450,70)bruh.begin_fill()bruh.color('white')bruh.speed(10)#makes a starfor c in range(5): bruh.forward(900) bruh.right(144)bruh.end_fill()bruh.color('white')bruh.penup()bruh.goto(35,80)bruh.pendown()bruh.shape("turtle")bruh.pensize(50)bruh.speed(10)#makes the donutfor n in range(90): for i in range(6): bruh.color('pink') bruh.forward(75) bruh.left(61) bruh.right(10)#makes sprinklesbruh.color('white')bruh.pensize(25)bruh.penup()bruh.goto(194,63)bruh.color('red')bruh.pendown()bruh.forward(10)bruh.penup()bruh.goto(-234,82)bruh.color('white')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(-254,-35)bruh.color('blue')bruh.pendown()bruh.forward(20)bruh.penup()bruh.penup()bruh.goto(-92,189)bruh.color('red')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(150,170)bruh.color('white')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(100,-200)bruh.color('blue')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(-200,-200)bruh.color('red')bruh.pendown()bruh.forward(10)bruh.penup()bruh.goto(-156,-243)bruh.color('white')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(-71,-250)bruh.color('blue')bruh.pendown()bruh.forward(20)bruh.penup()bruh.penup()bruh.goto(132,-96)bruh.color('red')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(219,-8)bruh.color('white')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(-225,240)bruh.color('blue')bruh.pendown()bruh.forward(20)bruh.penup()bruh.goto(-12,-97)bruh.pendown()bruh.color('white')bruh.speed(10)bruh.begin_fill()bruh.color('white')bruh.circle(75)bruh.end_fill()