Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmolveau
GitHub Repository: gmolveau/python_full_course
Path: blob/master/examples/jupyter/book.ipynb
305 views
Kernel: Python 3.9.7 64-bit ('venv': venv)

Hello

this is an example of a jupyter notebook

this is currently a markdown cell

# and this is a code cell where the code will be interpreted s = "ok" print(s)
ok

more explanation of things idk

# variables are shared across code cells so we can reuse `s` here print(s[::-1])
ko