About Using Infinities

For mathematical operations when you need infinities, you can get them like this:

1
2
3
INFINITY = float('inf')
MINUS_INFINITY = float('-inf')
MINUS_INFINITY < 42 < INFINITY

Tips and Tricks Programming Python 3