美文网首页
Jupyter基础

Jupyter基础

作者: Recalcitrant | 来源:发表于2019-08-16 10:23 被阅读0次

    Jupyter的使用

    一、安装

    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ jupyter
    

    二、启动

    切换到指定目录下运行notebook启动命令

    jupyter notebook
    

    三、常用操作

    1.获取帮助文档

    • 1.使用help函数
    help(对象)
    
    • 2.使用?
    对象?
    
    • 3.使用??获取源代码
    函数??
    
    • 4.?结合通配符搜索方法
      示例:


    2.代码补全提示

    Tab键
    使用Tab键可以探索代码、导包时自动补全。

    3.打印输入输出记录

    # 输入记录
    print(In)
    # 输出记录
    print(Out)
    # 输入的历史记录(带标号)(1-4行)
    %history -n 1-4
    

    4.执行shell命令

    ! + shell命令

    !shell命令
    

    四、魔法方法

    行魔法:以%开头,作用于单行代码。
    单元魔法:以%%开头,作用于多行代码。

    • 列出所有魔法方法
    %lsmagic
    
    魔法方法
    • 列出所有魔法方法的简短描述
    %magic
    

    1.%run

    执行外部代码。

    %run 文件名.py
    

    2.%timeit

    测试一行Python语句的执行时间。
    示例:


    3.%%timeit

    测试多行Python语句的执行时间。

    4.%xmode

    魔法命令%xmode是exception mode的缩写,用于设置错误栈样式。它有三种模式:Plain, Context, Verbose,默认为Context。

    (1)%xmode Plain

    精简的异常信息

    (2)%xmode Context

    普通的异常信息(默认)

    (3)%xmode Verbose

    详细的异常信息

    5.%debug

    在交互环境中调试程序

    up      # 上一行代码
    down    # 下一行代码
    quit    # 退出调试
    

    相关文章

      网友评论

          本文标题:Jupyter基础

          本文链接:https://www.haomeiwen.com/subject/vzwxsctx.html