Say I have a variable called
time = 6.50
how can I split the number so that I can output to the user:
print("Your total time was %i minutes and %i seconds. " %(minute, second))
I thought about converting them to string but I need to be able to multiply the .50 part by 60 so I can get the total seconds.