Skip to content Skip to sidebar Skip to footer
Showing posts with the label Precision

How To Get Largest Possible Precision? (python - Decimal)

I'm using the Decimal class for operations that requires precision. I would like to use 'la… Read more How To Get Largest Possible Precision? (python - Decimal)

Why Is The Output Different In Both Cases Comparing Floats

PYTHON PROGRAM: a = 0.2 if a == 0.2: print('*') OUTPUT: * C PROGRAM: #include int m… Read more Why Is The Output Different In Both Cases Comparing Floats