convert hours into minutes and seconds python program
Answers
Answered by
0
mins = float(input("hours: ")) * 60
print(f"minutes: {mins}\nseconds: {mins * 60}")
Similar questions