185k views
0 votes
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

1 Answer

5 votes

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)

Step-by-step explanation:

User Paolo Costa
by
3.9k points