With the file size given to me in MegaBytes (MB) I go ahead and convert it to Bytes:
in_MB = 999.991
in_KB = in_MB * 1024**2
The resulted value is: 1048566562.82
To verify my calculation is correct I navigate to Google Digital Storage Converter: and convert the calculated value in Bytes back to MegaBytes expecting to get the same input value I had: 999.991 MB. But surpassingly Google returns another value: 1048.56656282 MB instead of 999.991 MB.
Is there a mistake in my calculations?
