contestada

CHALLENGE ACTIVITY 6.1.2: Basic function call. Complete the function definition to return the hours given minutes. Sample output with input: 210.In python

Respuesta :

what are you trying to ask for the question

Answer:       def output_minutes_as_hours(orig_minutes):

                        output_minutes_as_hours= minutes/60

                         print (output_minutes_as_hours)

                  minutes = float(input())

                  output_minutes_as_hours(minutes)

Explanation: