SyntaxFix
Write A Post
Hire A Developer
Questions
You should check whether the distance from the center of the circle to the point is smaller than the radius
using Python
if (x-center_x)**2 + (y-center_y)**2 <= radius**2: # inside circle