Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Views: 10
Image: ubuntu2004
Kernel: Python 3 (system-wide)
def payment(p,r,n,t): x = (1+r/n)**t y = 1-x return -p*x*r/(n*y)
payment(2000,0.15,12,18)
124.76957453033408

This would mean that, it would roughly be $124.77 paid each month to pay off the credit card.