Skip to content

Commit 195e5f2

Browse files
1 parent f6358e5 commit 195e5f2

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

docs/day2/IDEs.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _use_ides:
22

33
Using IDEs
4-
============
4+
==========
55

66
There are several popular IDEs that are commonly used for interactive work with Python. Here we will show how to load ``Jupyter``, ``VS Code``, and ``Spyder``.
77

@@ -482,12 +482,12 @@ Jupyter
482482
.. figure:: ../img/pdc_reconnect_to_jupyter.png
483483

484484
JupyterLab 🚀
485-
############
485+
#############
486486

487487
JupyterLab is the next-generation web-based user interface for Project Jupyter. It provides an interactive development environment for working with notebooks, code, and data. JupyterLab offers a more flexible and powerful interface compared to the classic Jupyter Notebook, allowing users to arrange multiple documents and activities side by side in tabs or split screens.
488488

489489
Jupyter Notebook 📝
490-
#################
490+
##################
491491

492492
Jupyter Notebook is a sibling to other notebook authoring applications under the Project Jupyter umbrella, like JupyterLab. Jupyter Notebook offers a lightweight, simplified experience compared to JupyterLab.
493493

@@ -530,11 +530,13 @@ Jupyter Notebook is a sibling to other notebook authoring applications under the
530530
531531
- Timing snippets
532532
- ``%time`` — time a single statement.
533+
533534
.. code-block:: python
534535
535536
%time sum(range(100000))
536537
537538
- ``%timeit`` / ``%%timeit`` — run repeated timings for more robust measurements.
539+
538540
.. code-block:: python
539541
540542
%timeit sum(range(1000))

0 commit comments

Comments
 (0)