Question: Could you help me make a python code to make my star into a circle of stars as shown in the picture on the bottom?


Could you help me make a python code to make my star into a circle of stars as shown in the picture on the bottom? Thanks!
def star(x, y, size, color, theta): turtle.speed(100) turtle.penup() turtle.goto(x, y) turtle.pendown () turtle.color(color) turtle.begin fill) turtle.seth(theta) for i in range (5): turtle.left (180-36) turtle.forward(size) turtle.right(72) turtle.forward(size) turtle.endfill)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
