Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Got another one
#6
You don't even need the if and else. Think about it:

x3 >= x1 and x3 <= x2 and y3 >= y1 and y3 <= y2
is an expression that evaluates to True or False. Based on which, you're setting the value of point_is_in_rectangle - if it's True, you set the variable to True and similarly if it evaluates to False.

So, one can just write

point_is_in_rectangle = x3 >= x1 and x3 <= x2 and y3 >= y1 and y3 <= y2
Reply


Messages In This Thread
Got another one - by DansterTx - Feb-17-2020, 12:53 AM
RE: Got another one - by michael1789 - Feb-17-2020, 01:17 AM
RE: Got another one - by DansterTx - Feb-17-2020, 03:04 AM
RE: Got another one - by jefsummers - Feb-17-2020, 01:21 AM
RE: Got another one - by michael1789 - Feb-17-2020, 03:21 AM
RE: Got another one - by ndc85430 - Feb-17-2020, 06:35 AM
RE: Got another one - by DansterTx - Feb-17-2020, 06:10 PM
RE: Got another one - by jefsummers - Feb-17-2020, 06:45 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020