I want to create a tic tac toe game with python turtle library and I want it to draw a circle wherever the mouse clicked, how can I draw something on mouse click position?
I used the pygame library code like:
for event in pygame.event.get():
if event.type == pygame.FINGERDOWN:
print("Finger touched the screen")
But it doesn't work