def running_pace(distance, time): minutes, seconds = [int(part) for part in time.split(':')] total_seconds = minutes * 60 + seconds seconds_per_km = total_seconds / distance pace_minutes = int(seconds_per_km // 60) pace_seconds = int(seconds_per_km % 60) return f'{pace_minutes}:{pace_seconds:02d}'
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a blogging-forward open source social network where we learn from one another
Discussion on: Daily Challenge #36 - Let's go for a run!
For further actions, you may consider blocking this person and/or reporting abuse