![](/assets/img/advent2018/vs_code.png)
If you started with Jupyter Notebook, going back to normal Python coding you might miss the itterative cell coding style. Luckily there is an amazing add-on for Visual Studio Code.
So how do you run a cell? A cell is defined as follows.
#%%
hello_word = "My first cell"
hello_world
#%%
hello_word = "It works"
hello_world