jupyter lab

things I wish that I know when I started to use jupyter lab

1# display the wall-time and cpu time
2%%time
3
4
5#ignore warnings or just let it display once
6import warnings
7warnings.filterwarnings('ignore')
8# warnings.filterwarnings(action='once')
The Latest