Skip to content
1 hidden cell
Introduction to Python
Introduction to Python
Run the hidden code cell below to import the data used in this course.
1 hidden cell
Take Notes
Add notes about the concepts you've learned and code cells with code you want to keep.
Add your notes here
# Add your code snippets heresavings = 100 growth_multiplier = 1.1 desc = "compound interest"
Assign product of savings and growth_multiplier to year1
year1=savings*growth_multiplier
Print the type of year1
print(type(year1)) print(year1)
Assign sum of desc and desc to doubledesc
doubledesc=desc+desc
Print out doubledesc
print(doubledesc)?