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: 22
not True
False
not False
True
for p in [True, False]: print p, not p
True False False True
mitabla = [] cabecera = ["p","not p"] mitabla.append(cabecera) for p in [True, False]: renglon = [int(p), int(not p)] mitabla.append(renglon) show(table(mitabla))