In my code, I use format() to return the value of converted minuets.
def convert(minutes):
return'{seconds}'.format(seconds = minutes*60)
Every time I use format to return a function it returns it with quotation marks ' '.
Input:
convert(10)
Output:
'600'
How do I use format to return the function without the quotation marks?