PiB to GiB Converter - CONVERT Pebibytes to Gibibytes
Copy Link & ShareExcel Formula to convert from PiB to GiB
Apply the formula as shown below to convert from Pebibyte to Gibibyte.
A | B | C | |
---|---|---|---|
1 | Pebibyte (PiB) | Gibibyte (GiB) | |
2 | 1 | =A2 * 1048576 | |
3 |
Download - Excel Template for Pebibyte 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 PiB to GiB Conversion
You can use below code to convert any value in Pebibyte to Gibibyte in Python.
pebibyte = int(input("Enter Pebibyte: "))
gibibyte = pebibyte * (1024*1024)
print("{} Pebibyte = {} Gibibyte".format(pebibyte,gibibyte))
gibibyte = pebibyte * (1024*1024)
print("{} Pebibyte = {} Gibibyte".format(pebibyte,gibibyte))
The first line of code will prompt the user to enter the Pebibyte as an input. The value of Gibibyte is calculated on the next line, and the code in third line will display the result.