Mbps to MBps Calculator - Convert Megabits Per Second to Megabytes Per Second

Conversion History (Last 6)
Excel Formula to convert from Mbps to MBps
Apply the formula as shown below to convert from Megabits Per Second to Megabytes Per Second.
A | B | C | |
---|---|---|---|
1 | Megabits Per Second (Mbps) | Megabytes Per Second (MBps) | |
2 | 1 | =A2 * 0.125 | |
3 |
Download - Excel Template for Megabits Per Second to Megabytes Per Second Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for Mbps to MBps Conversion
You can use below code to convert any value in Megabits Per Second to Megabytes Per Second in Python.
megabitsPerSecond = int(input("Enter Megabits Per Second: "))
megabytesPerSecond = megabitsPerSecond / 8
print("{} Megabits Per Second = {} Megabytes Per Second".format(megabitsPerSecond,megabytesPerSecond))
megabytesPerSecond = megabitsPerSecond / 8
print("{} Megabits Per Second = {} Megabytes Per Second".format(megabitsPerSecond,megabytesPerSecond))
The first line of code will prompt the user to enter the Megabits Per Second as an input. The value of Megabytes Per Second is calculated on the next line, and the code in third line will display the result.