kbit/Day to Ebps Calculator - Convert Kilobits Per Day to Exabits Per Second

Conversion History (Last 6)
Excel Formula to convert from kbit/Day to Ebps
Apply the formula as shown below to convert from Kilobits Per Day to Exabits Per Second.
A | B | C | |
---|---|---|---|
1 | Kilobits Per Day (kbit/Day) | Exabits Per Second (Ebps) | |
2 | 1 | =A2 * 0.000000000000001 * 0.0000115740740740740740740740740740740740 | |
3 |
Download - Excel Template for Kilobits Per Day to Exabits 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 kbit/Day to Ebps Conversion
You can use below code to convert any value in Kilobits Per Day to Exabits Per Second in Python.
kilobitsPerDay = int(input("Enter Kilobits Per Day: "))
exabitsPerSecond = kilobitsPerDay / (1000*1000*1000*1000*1000) / ( 60 * 60 * 24 )
print("{} Kilobits Per Day = {} Exabits Per Second".format(kilobitsPerDay,exabitsPerSecond))
exabitsPerSecond = kilobitsPerDay / (1000*1000*1000*1000*1000) / ( 60 * 60 * 24 )
print("{} Kilobits Per Day = {} Exabits Per Second".format(kilobitsPerDay,exabitsPerSecond))
The first line of code will prompt the user to enter the Kilobits Per Day as an input. The value of Exabits Per Second is calculated on the next line, and the code in third line will display the result.