Jupyter Notebook List Example - Jupyter-notebook Typing CST Test
Loading…
Jupyter Notebook List Example — Jupyter-notebook Code
A Python cell creating a list and iterating over it.
fruits = ['apple', 'banana', 'cherry']
for fruit in fruits:
print(fruit)Jupyter-notebook Language Guide
Jupyter Notebook is an open-source interactive web-based environment that allows users to create and share documents containing live code, equations, visualizations, and narrative text. It is widely used for data science, scientific computing, and machine learning.
Primary Use Cases
- ▸Data analysis and visualization
- ▸Machine learning experiments
- ▸Teaching programming, statistics, and data science
- ▸Documenting scientific research workflows
- ▸Interactive tutorials and demonstrations
Notable Features
- ▸Interactive live code execution
- ▸Rich text support with Markdown
- ▸Inline visualizations (Matplotlib, Plotly, etc.)
- ▸Support for multiple programming languages via kernels
- ▸Export notebooks to multiple formats (HTML, PDF, slides)
Origin & Creator
Jupyter Notebook originated from the IPython project, created by Fernando Pérez in 2001, and later evolved into the Jupyter Project in 2014 to support multiple languages.
Industrial Note
Widely used in data science, machine learning, scientific research, and educational contexts. Less suited for building production web applications or large-scale software systems.
More Jupyter-notebook Typing Exercises
Hello World in Jupyter Notebook (Python)Hello World with Markdown in Jupyter NotebookJupyter Notebook Math ExampleJupyter Notebook Function ExampleJupyter Notebook Plot ExampleJupyter Notebook Pandas DataFrame ExampleJupyter Notebook Markdown Header ExampleJupyter Notebook Import NumPy ExampleJupyter Notebook Markdown List Example