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