python comparing difference of numbers code example
Example: check if there is a certain number difference with python
In [1]: abs(1-2)
Out[1]: 1
In [2]: abs(2-1)
Out[2]: 1
In [1]: abs(1-2)
Out[1]: 1
In [2]: abs(2-1)
Out[2]: 1