2016年8月11日 星期四

jupyter

jupyter是一種程式語言跟文件整合的東西
安裝完成之後電腦可以run一個localhost by
jupyter notebook
按ctrl+c可以結束執行


在瀏覽器中執行http://localhost:8888/

從new可以新增notebooks可以選擇不同的notebook kernel

jupyter分為command mode跟edit mode
edit mode會看到游標並且左邊的tag是綠色
command mode tag是藍色
可以透過ctrl+m/esc切換到command mode
command mode hotkey
d,d 刪除cell
shift+m合併下面的cell

edit mode hotkey
ctrl+shift+"-" 分割cell
shift+enter: render cell

heading
#my title
##sub title

用shift+tab查看function 註解

def myfunc(x,y):
    """
    test
    """
    return x+y

看結果shift + return

%%<program name>
command

ex:
%%cmd
dir


沒有留言:

張貼留言