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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_33897358/article/details/83040918

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

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

实现函数查询

猜你喜欢

转载自blog.csdn.net/qq_33897358/article/details/83040918