Python program to convert hours to milliseconds


Following program shows you how to convert hours to milliseconds.
In this program we get hours from user, once we get those we need to multiply with 60 so that we get in mintues, once we get mintues we need to multiply with 60 so that we get in seconds, once we get seconds we need to multiply with 1000 so that we get in milliseconds

hours = int(input("Please enter hours:"))
milliseconds = hours * 60 * 60 * 1000
print(milliseconds, " Milliseconds")

Output:

Please enter hours: 3
10800000  Milliseconds