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