Guest User

Untitled

a guest
Dec 10th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def CheckIfIDIsWithin (fieldMin,fieldMax, field):
  2. if field >= fieldMin and field <= fieldMax:
  3. return 1
  4. else:
  5. return -1
Add Comment
Please, Sign In to add comment