美文网首页
jupyter 12-02

jupyter 12-02

作者: 张文超ai | 来源:发表于2018-12-02 18:46 被阅读0次

jupyter#

jupyter 是一个简易的,方便的写Python代码的工具包,requests是Python里非常好用的用来发送 http 请求的包,使用需要安装 jupyter 和 requests 。
Windows键+X键选择 命令提示符。

Requests: HTTP for Humans

import requests
response = requests.get("https://www.baidu.com")
print(response.status_code)
print(response.content.decode('utf-8'))

相关文章

  • jupyter 12-02

    jupyter# jupyter 是一个简易的,方便的写Python代码的工具包,requests是Python里...

  • 12-02

    早上起得早,看了一小时的经济学,下午有机会看了谷物大脑,看医学,再到晚上重新看霸王别姬,自己还是喜欢看故事。电影《...

  • 12-02

    昨天接了一个电话,姨父家的儿子,告诉我姨父的手术情况,放下电话,心中沉甸甸的。说是早期中的早期,却需切除整个胃,又...

  • Numpy使用入门

    Jupyter 启动 jupyter notebook magic methed jupyter notebook...

  • Jupyter 真香

    What is Jupyter ? Jupyter, also called Project Jupyter, i...

  • 第一回:Matplotlib初相识

    Miniconda Jupyter Matplotlib Server vi .jupyter/jupyter_n...

  • 玩转 Jupyter Notebook (CentOS)

    1 安装 Jupyter Notebook Jupyter Notebook 简介 Jupyter Noteboo...

  • jupyter notebook 找不到命令

    使用 pip install jupyter 安装 jupyter 后启动 jupyter notebook 报错...

  • Jupyter Notebook安装和使用

    Jupyter Notebook 安装:pip3 install jupyter启动:jupyter notebo...

  • Jupyter

    一、jupyter安装命令 pip install jupyter(pip3 install jupyter) j...

网友评论

      本文标题:jupyter 12-02

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