MiB to GB Calculator - Convert Mebibytes to Gigabytes

Conversion History (Last 6)
Excel Formula to convert from MiB to GB
Apply the formula as shown below to convert from Mebibyte to Gigabyte.
A | B | C | |
---|---|---|---|
1 | Mebibyte (MiB) | Gigabyte (GB) | |
2 | 1 | =A2 * 0.001048576 | |
3 |
Download - Excel Template for Mebibyte to Gigabyte Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for MiB to GB Conversion
You can use below code to convert any value in Mebibyte to Gigabyte in Python.
mebibyte = int(input("Enter Mebibyte: "))
gigabyte = mebibyte * (1024*1024) / (1000*1000*1000)
print("{} Mebibyte = {} Gigabyte".format(mebibyte,gigabyte))
gigabyte = mebibyte * (1024*1024) / (1000*1000*1000)
print("{} Mebibyte = {} Gigabyte".format(mebibyte,gigabyte))
The first line of code will prompt the user to enter the Mebibyte as an input. The value of Gigabyte is calculated on the next line, and the code in third line will display the result.