您的位置:首页技术文章
文章详情页

利用jupyter网页版本进行python函数查询方式

【字号: 日期:2022-07-30 09:31:20浏览:4作者:猪猪

我就废话不多说了,还是直接看代码吧!

import numpyworld_alchol=numpy.genfromtxt('world_alcohol.txt',delimter='.',dtype=str)print(type(world_alcohol))print(world_alcohol)print(help(numpy.genfromtxt))

实现函数查询。

补充知识:Jupyter Notebook 中查看当前 运行哪个python

在运行 Jupyter Notebook时候, 往往由于我们机器上装有多个版本的python, 我们不知道哪个python 是我们正在用的。

可以使用sys.executable 查看路径, 如下:

import sysprint sys.executable

我们获得的结果为:

利用jupyter网页版本进行python函数查询方式

这样我们知道当前python路径为/usr/bin/python 了

以上这篇利用jupyter网页版本进行python函数查询方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持好吧啦网。

标签: Python 编程
相关文章: