conda update jupyter

help

?
%quickref
Object.metod?
Object.metod??
Object.get?
TAB-completion
%magic
%lsmagic


In [ ]:
!pwd  
files = !ls 
print(files)

In [ ]:
%%bash
pwd
ls

In [ ]:
%load filename

In [ ]:
%debug

In [ ]:
input('Mata in')

In [ ]:
from IPython.display import HTML
import pandas
pandas.set_option('display.notebook_repr_html', True)
df = pandas.read_csv('../nordnetapi/apitest/ipython/trades.csv')
df

In [ ]:
!ls ../nordnetapi/apitest/ipython/trades.csv

In [ ]:
from sympy.interactive.printing import init_printing
from sympy import *
init_printing(use_latex=True)
3*pi/2

In [ ]:


In [ ]: