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