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: 43
Image: ubuntu2004
#Maggie O'Leary def twoToTheN(product): for i in range(1): product = 2**product print(product)
twoToTheN(3)
8
twoToTheN(4)
16
twoToTheN(5)
32
def twoToTheN(n): print(2**n) ︠a77cd4ab-0751-49c6-b3e2-4d994faa0dda︠