I have a task where I am supposed to create a circle and plot some random points inside it. I am new to Python and Python libraries. I need some suggestions about different software or packages that might help me with my task.
I have seen some YouTube videos, but they were not relevant to my topic. This is the code I saw in a tutorial to create a circle:
from graphics import *
def main():
win = GraphWin("my window",500,500)
pt = Point(250,250)
win.setBackground(color_rgb(255,255,255))
cir = Circle(pt,50)
cir.draw(win)
win.getMouse()
win.close()
main()
Can I continue with this graphics class to complete my task? If not, then please suggest a good library or s/w.