I have a number in exponential format and want to add 1 to the number. Why is python printing the original number?
num = 1.1920928955078124e+16
print(num) # == 1.1920928955078124e+16
print(num + 1) # == 1.1920928955078124e+16
print(num + 2) # == 1.1920928955078126e+16
However when I add 2, it works and returns original number + 2
Thanks for help