Kilobyte to Gigabyte - 5000 kB to GB Conversion

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