Computer Science, asked by drbalasheetal, 5 months ago

Write a program to take time in hours and minutes to the equivalent total minutes.​

Answers

Answered by allysia
0

Answer:

The codes are:

________________________

hour=float(input("Enter the number of hours: "))

print("The total number of minutes in", hour, "hours will be", 60*hour,".")

_________________________

Answered by jai696
1

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

print(f"minutes: {(hrs := float(input('hours: '))) * 60}")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions