2 Jupyter Notebook tricks for more productivity

Sudhir Dhameliya
1 min readSep 5, 2020

--

Photo by Nikita Kachanovsky on Unsplash

1 : Multi line Output

While making analysis on any dataset, we need to use print method very often for print our variable. This can be lot’s of time consuming, isn’t it ?

What if we can print any variable or any message without print statement in Jupyter Notebook

There is a trick by which we can get this.

2 : Confirm Sound

What if a sound played when our task completed in Jupyter Notebook

First we will make a function using “winsound” module

put this function after your code line and when your code finished execution, windows play a sound

--

--