Write a python function to convert hours to either mins or seconds
Topic: Write a python function to convert hours to either mins or seconds
Solution
def convert_to_minutes(num_hours): '''(int) -> int Return the number of minutes there are in num_hours hours. ''' minutes = num_hours * 60 return minutes def convert_to_seconds(num_hours): '''(int) -> int Return the number of seconds there are in num_hours hours. ''' minutes = convert_to_minutes(num_hours) seconds = minutes * 60 return seconds min = convert_to_minutes(1) print(min) seconds = convert_to_seconds(1) print(seconds)
List all Python Programs