I am wondering how I can get the pointer to end in the center of the circle. It is okay if there is a line drawn to the center of the circle.
radius = int(input("Enter the radius"))
circum = 2*3.1416 * radius
number_of_sides = 50
side_length = circum / number_of_sides
angle = 360 / number_of_sides
import turtle
circle =turtle.Turtle()
for i in range (number_of_sides):
circle.color("red")
circle.forward(side_length)
circle.left(angle)