Mbps to kbps Converter - CONVERT Megabits Per Second to Kilobits Per Second
Copy Link & ShareExcel Formula to convert from Mbps to kbps
Apply the formula as shown below to convert from Megabits Per Second to Kilobits Per Second.
A | B | C | |
---|---|---|---|
1 | Megabits Per Second (Mbps) | Kilobits Per Second (kbps) | |
2 | 1 | =A2 * 1000 | |
3 |
Download - Excel Template for Megabits Per Second to Kilobits 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 kbps Conversion
You can use below code to convert any value in Megabits Per Second to Kilobits Per Second in Python.
megabitsPerSecond = int(input("Enter Megabits Per Second: "))
kilobitsPerSecond = megabitsPerSecond * 1000
print("{} Megabits Per Second = {} Kilobits Per Second".format(megabitsPerSecond,kilobitsPerSecond))
kilobitsPerSecond = megabitsPerSecond * 1000
print("{} Megabits Per Second = {} Kilobits Per Second".format(megabitsPerSecond,kilobitsPerSecond))
The first line of code will prompt the user to enter the Megabits Per Second as an input. The value of Kilobits Per Second is calculated on the next line, and the code in third line will display the result.