Write a Python program to input number of hours and convert it into days. Also get number of days and convert it into number of hours.
please help me.
Answers
Answered by
1
Answer:
Hours=int(input ("Enter the number of hours :"))
Days= 24*Hours
print("The number of days are: ", Days)
Days=int(input (" Enter the number of days:"))
Hours= 24/Days
print("The number of hours are:", Hours)
HOPE THIS ANSWER WILL HELP U
PLEASE MARK IT BRAINLIEST ❤️
Similar questions