zoukankan      html  css  js  c++  java
  • Jupyter

    1 ) 魔法命令

    1.1 ) 执行外部文件

    %run add.py
    

    3

    add(2, 3)
    

    5

    1.2 ) 运行计时

    %time print("hello word")
    
    hello word
    CPU times: user 68 µs, sys: 20 µs, total: 88 µs
    Wall time: 93.9 µs
    
    %timeit print("hello word")
    

    1.3 ) 查看当前会话中的所有变量与函数

    %who
    

    Interactive namespace is empty.

    %whos
    

    Interactive namespace is empty.

    %who-ls
    

    No variables match your requested type.

    1.4 ) 运行终端命令

    !ls
    
    add.py     test.ipynb
    

    1.5 ) 查看魔法指令

    lsmagic
    
    Available line magics:
    %alias  %alias_magic  %autocall  %automagic 
    %autosave  %bookmark  %cat  %cd  %clear  %colors  %config  %connect_info  %cp  %debug  %dhist  %dirs  %doctest_mode  %ed  %edit  %env  %gui  %hist  %history  %killbgscripts  %ldir  %less  %lf  %lk  %ll  %load  %load_ext  %loadpy  %logoff  %logon  %logstart  %logstate  %logstop  %ls  %lsmagic  %lx  %macro  %magic  %man  %matplotlib  %mkdir  %more  %mv  %notebook  %page  %pastebin  %pdb  %pdef  %pdoc  %pfile  %pinfo  %pinfo2  %popd  %pprint  %precision  %profile  %prun  %psearch  %psource  %pushd  %pwd  %pycat  %pylab  %qtconsole  %quickref  %recall  %rehashx  %reload_ext  %rep  %rerun  %reset  %reset_selective  %rm  %rmdir  %run  %save  %sc  %set_env  %store  %sx  %system  %tb  %time  %timeit  %unalias  %unload_ext  %who  %who_ls  %whos  %xdel  %xmode
    Available cell magics:
    %%!  %%HTML  %%SVG  %%bash  %%capture  %%debug  %%file  %%html  %%javascript  %%js  %%latex  %%markdown  %%perl  %%prun  %%pypy  %%python  %%python2  %%python3  %%ruby  %%script  %%sh  %%svg  %%sx  %%system  %%time  %%timeit  %%writefile
    Automagic is ON, % prefix IS NOT needed for line magics.
    
  • 相关阅读:
    PHP学习心得(八)——运算符
    PHP学习心得(九)——函数
    PHP学习心得(十)——控制结构
    PHP学习心得(七)——常量
    PHP学习心得(六)——变量
    PHP学习心得(五)——类型
    PHP学习心得(四)——基本语法
    PHP学习心得(三)——处理表单
    PHP学习心得(二)——实用脚本
    PHP学习心得(一)——简介
  • 原文地址:https://www.cnblogs.com/yuzhen233/p/8452691.html
Copyright © 2011-2022 走看看