Introduction to Jupyter Notebooks¶
🚀 Open Notebook¶
Welcome! This is an interactive Jupyter Notebook.
Unlike standard Python scripts (.py), notebooks allow you to mix text (Markdown) and executable Python code in the same document. This is incredibly useful for learning, exploring data, and documenting your thought process.
Variables and State¶
One of the key features of notebooks is that variables are saved in memory after a cell is executed. You can define a variable in one cell and use it in another!
Next Steps¶
Experiment with changing the code above and re-running the cells. Notebooks are perfect for trial-and-error programming!