0
0
Data Analysis Pythondata~5 mins

Jupyter Notebook setup and usage in Data Analysis Python - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a Jupyter Notebook?
A Jupyter Notebook is an interactive web tool that lets you write and run code, see results, and add notes all in one place. It is great for learning and sharing data science work.
Click to reveal answer
beginner
How do you start a Jupyter Notebook from the command line?
You open your terminal or command prompt and type jupyter notebook. This opens the notebook interface in your web browser.
Click to reveal answer
beginner
What are cells in a Jupyter Notebook?
Cells are blocks where you write code or text. Code cells run Python code, and markdown cells let you write formatted notes and explanations.
Click to reveal answer
beginner
How do you run a cell in Jupyter Notebook?
You can run a cell by clicking it and pressing Shift + Enter. This runs the code or renders the text and moves to the next cell.
Click to reveal answer
beginner
How do you save your work in a Jupyter Notebook?
You can save your notebook by clicking the save icon or pressing Ctrl + S. The notebook is saved as a file with .ipynb extension.
Click to reveal answer
What command starts the Jupyter Notebook server?
Astart notebook
Bpython notebook
Cjupyter notebook
Drun jupyter
Which key combination runs the current cell and moves to the next one?
AShift + Enter
BAlt + Enter
CCtrl + Enter
DEnter
What file extension do Jupyter Notebooks use?
A.json
B.txt
C.py
D.ipynb
Which type of cell allows you to write formatted text and explanations?
ACode cell
BMarkdown cell
CRaw cell
DOutput cell
How do you save your notebook work?
AClick the save icon or press Ctrl + S
BRestart the kernel
CRun all cells
DClose the browser tab
Explain how to start and use a Jupyter Notebook for a beginner.
Think about the steps from opening the tool to running your first code.
You got /6 concepts.
    Describe the difference between code cells and markdown cells in Jupyter Notebook.
    One cell type runs code, the other is for writing notes.
    You got /4 concepts.