11/15/202011/18/2020 Convert Minutes into Seconds Challenge 002 Write a function that takes an integer minutes and converts it to seconds. convert(5) ➞ 300 convert(3) ➞ 180 convert(2) ➞ 120 Solution def convert(minutes): return minutes * 60