I'm creating my first Python game, but I've run across a problem. The game makes you feed the Apple's logo to Steve Jobs' head. The problem is that I have to give the apple to the exact x,y coordinate to win. It's a really small location. I want to have a bigger win area. Maybe a win area as a rectangle around his mouth. Here's the code I have so far for the win. It works so far with my code so I won't show you the whole thing. Currently, the apple follows your mouse's position, so that's what pos is for.
	PHP Code:
	
		
			
win = 420,300
#skips some lines you don't need to see, including the while loop
    if pos == win:
      print("Win!") 
		
	
 Here's a screenshot of the game so far.