Hey all! I'm stuck on Guido's Gorgeous Lasagna for Python.
So I have smashed around in my head some things about basic python. And I have come up with solutions to complete Task 1-3. But I'm stuck or maybe getting slightly confused on Task 4.
I have included I hope correctly the code block I have for Task 4. I'm thinking we just take in 2 parameters (preparation_time_in_minutes because of the number_of_layers and bake_time_remaining / elapsed_bake_time)
But when I go to run it the numbers are not coming out right. Assuming I'm missing something or possibly have something confused?
#TODO: define the 'elapsed_time_in_minutes()' function below.
def elapsed_time_in_minutes(bake_time_remaining, preparation_time_in_minutes):
time_difference = bake_time_remaining + preparation_time_in_minutes
return time_difference