Gbit/Hour to MB/Minute Converter - CONVERT Gigabits Per Hour to Megabytes Per Minute
Copy Link & ShareExcel Formula to convert from Gbit/Hour to MB/Minute
Apply the formula as shown below to convert from Gigabits Per Hour to Megabytes Per Minute.
A | B | C | |
---|---|---|---|
1 | Gigabits Per Hour (Gbit/Hour) | Megabytes Per Minute (MB/Minute) | |
2 | 1 | =A2 * 125 * 0.0166666666666666666666666666666666666666 | |
3 |
Download - Excel Template for Gigabits Per Hour to Megabytes Per Minute Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for Gbit/Hour to MB/Minute Conversion
You can use below code to convert any value in Gigabits Per Hour to Megabytes Per Minute in Python.
gigabitsPerHour = int(input("Enter Gigabits Per Hour: "))
megabytesPerMinute = gigabitsPerHour * 1000 / 8 / 60
print("{} Gigabits Per Hour = {} Megabytes Per Minute".format(gigabitsPerHour,megabytesPerMinute))
megabytesPerMinute = gigabitsPerHour * 1000 / 8 / 60
print("{} Gigabits Per Hour = {} Megabytes Per Minute".format(gigabitsPerHour,megabytesPerMinute))
The first line of code will prompt the user to enter the Gigabits Per Hour as an input. The value of Megabytes Per Minute is calculated on the next line, and the code in third line will display the result.