Bps to kbit/Hour Calculator - Convert Bytes Per Second to Kilobits Per Hour

Conversion History (Last 6)
Excel Formula to convert from Bps to kbit/Hour
Apply the formula as shown below to convert from Bytes Per Second to Kilobits Per Hour.
A | B | C | |
---|---|---|---|
1 | Bytes Per Second (Bps) | Kilobits Per Hour (kbit/Hour) | |
2 | 1 | =A2 * 0.008 * 3600 | |
3 |
Download - Excel Template for Bytes Per Second to Kilobits Per Hour Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for Bps to kbit/Hour Conversion
You can use below code to convert any value in Bytes Per Second to Kilobits Per Hour in Python.
bytesPerSecond = int(input("Enter Bytes Per Second: "))
kilobitsPerHour = bytesPerSecond * 8 / 1000 * 60 * 60
print("{} Bytes Per Second = {} Kilobits Per Hour".format(bytesPerSecond,kilobitsPerHour))
kilobitsPerHour = bytesPerSecond * 8 / 1000 * 60 * 60
print("{} Bytes Per Second = {} Kilobits Per Hour".format(bytesPerSecond,kilobitsPerHour))
The first line of code will prompt the user to enter the Bytes Per Second as an input. The value of Kilobits Per Hour is calculated on the next line, and the code in third line will display the result.
Bps to kbps to Kibps Conversion Table
Bytes Per Second (Bps) | Kilobit Per Second (kbps) | Kibibit Per Second (Kibps) |
---|---|---|
1 Bps | 0.008 kbps | 0.0078125 Kibps |
2 Bps | 0.016 kbps | 0.015625 Kibps |
3 Bps | 0.024 kbps | 0.0234375 Kibps |
4 Bps | 0.032 kbps | 0.03125 Kibps |
5 Bps | 0.04 kbps | 0.0390625 Kibps |
6 Bps | 0.048 kbps | 0.046875 Kibps |
7 Bps | 0.056 kbps | 0.0546875 Kibps |
8 Bps | 0.064 kbps | 0.0625 Kibps |
9 Bps | 0.072 kbps | 0.0703125 Kibps |
10 Bps | 0.08 kbps | 0.078125 Kibps |
100 Bps | 0.8 kbps | 0.78125 Kibps |
256 Bps | 2.048 kbps | 2 Kibps |
500 Bps | 4 kbps | 3.90625 Kibps |
512 Bps | 4.096 kbps | 4 Kibps |
1000 Bps | 8 kbps | 7.8125 Kibps |
1024 Bps | 8.192 kbps | 8 Kibps |
2048 Bps | 16.384 kbps | 16 Kibps |
5000 Bps | 40 kbps | 39.0625 Kibps |
10000 Bps | 80 kbps | 78.125 Kibps |