For this task, we will be translating the program we have in the main.py file into a Jupyter Notebook so that we can see the interface that Jupyter offers compared to a traditional Python script. Again, note that we will not be using PyCharm during this process. Now, let's look at the following steps:
- First, we will create a regular folder to follow this example without using PyCharm. Go ahead and open a Terminal at this directory as well.
- Then, we will need to install Jupyter, which can be done via the pip package manager:
pip install jupyter
- Next, since Jupyter is, ...