From the course: Get Ready for Your Coding Interview

Unlock the full course today

Join today to access over 23,100 courses taught by industry experts.

Introduction to Jupyter Notebook

Introduction to Jupyter Notebook

- [Instructor] In this course, we're going to use Python and Jupyter notebook, which is an interactive notebook for Python. Feel free to skip these videos if you'd like to use any other Python IDE or any other language, but wait, you might ask what is Jupyter notebook exactly anyway? It's basically a server that runs on your computer with a Python interpreter, which is going to interpret and run your code. Jupyter notebook combines this with a notebook like interface that you can use on your browser. And you're going to see what it's like in another video later. So why are we using Jupyter here? It's because it's super interactive and it provides a really nice way to organize your code. It's also a great way to test your code quickly. In my exercise files, I provide some test cases in Jupyter notebooks so you can test your solutions to my simple coding, into your problems quickly. To install Jupyter and Python I…

Contents