I have some code to convert string to float:
n = float('9400108205499941468492')
My unittest throws exceptions:
self.assertEqual(9400108205499941468492, n)
Expected :9400108205499941468492
Actual :9.400108205499941e+21
What should I do to disable scientific notation in float().