Explanation:
growth_multiplier is 1.1
savings = 100
desc = "compound interest "
# Place product of growth_multiplier and savings to year 1
Year 1 = growth_multiplier* savings
print(type(year1))
Now,
# Place addition of desc & desc
doubledesc will be desc + desc
# Print doubledesc
print(doubledesc)