Byte to Gibibyte - 500 Byte to GiB Conversion
Copy Link & ShareExcel Formula to convert from Byte to GiB
Apply the formula as shown below to convert from 500 Byte to Gibibyte.
A | B | C | |
---|---|---|---|
1 | Byte (B) | Gibibyte (GiB) | |
2 | 500 | =A2 * 0.000000000931322574615478515625 | |
3 |
Download - Excel Template for Byte to Gibibyte Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for Byte to GiB Conversion
You can use below code to convert any value in Byte to Gibibyte in Python.
byte = int(input("Enter Byte: "))
gibibyte = byte / (1024*1024*1024)
print("{} Byte = {} Gibibyte".format(byte,gibibyte))
gibibyte = byte / (1024*1024*1024)
print("{} Byte = {} Gibibyte".format(byte,gibibyte))
The first line of code will prompt the user to enter the Byte as an input. The value of Gibibyte is calculated on the next line, and the code in third line will display the result.