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