EB to PB Converter - CONVERT Exabytes to Petabytes
Copy Link & ShareExcel Formula to convert from EB to PB
Apply the formula as shown below to convert from Exabyte to Petabyte.
A | B | C | |
---|---|---|---|
1 | Exabyte (EB) | Petabyte (PB) | |
2 | 1 | =A2 * 1000 | |
3 |
Download - Excel Template for Exabyte to Petabyte Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for EB to PB Conversion
You can use below code to convert any value in Exabyte to Petabyte in Python.
exabyte = int(input("Enter Exabyte: "))
petabyte = e*abyte * 1000
print("{} Exabyte = {} Petabyte".format(exabyte,petabyte))
petabyte = e*abyte * 1000
print("{} Exabyte = {} Petabyte".format(exabyte,petabyte))
The first line of code will prompt the user to enter the Exabyte as an input. The value of Petabyte is calculated on the next line, and the code in third line will display the result.