On 01/-10/-28163 02:59 PM, Abhishek Jain wrote:
How to check equality of two nos. in python

Python doesn't have numbers, it has various numeric data types. If all you're concerned with are int types, then just use the obvous:

     if  a == b:
            dosomething....

If one or both might be floats, you have to deal with the likelihood that one or both may have quantization error, either caused by computational approximations, precision limitations, or conversion back and forth between string and internal binary representation.

If one is in Decimal, you have to mostly deal with the first two.

If one is complex, ...

DaveA


--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to