Skip to content

Instantly share code, notes, and snippets.

cd C:\Users <<your path>> \mytestsite
call python manage.py runserver
pause
def compound (co):
def interest(interests):
return co*interests
return interest
five_years=compound(100000)
seven_years=compound(10000000)
ten_years=compound(10000)
def compound (co):
def interest(interests):
return co*interests
return interest
five_years=compound(100000)
seven_years=compound(10000000)
ten_years=compound(10000)