numpy模块的简单介绍

Posted xaiobong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy模块的简单介绍相关的知识,希望对你有一定的参考价值。

import numpy as np
ret = np.arange(3)
print(ret)

"""
运行结果
[0 1 2]
"""

import numpy as np
ret = np.array([1,2,3,4])
print(ret)

"""
运行结果
[1 2 3 4]
"""

import numpy as np
ret = np.ones(5)
print(ret)
ret2 = np.zeros(7)
print(ret2)

ret3 = ret.astype(np.int32)
print(ret3)
"""
运行结果
[1. 1. 1. 1. 1.]
[0. 0. 0. 0. 0. 0. 0.]
[1 1 1 1 1]
"""


import numpy as np
ret = np.array([1,2,3,4],dtype=np.float32)
print(ret)

ret2 = ret.astype(np.int32)
print(ret2)
"""
运行结果
[1. 2. 3. 4.]
[1 2 3 4]
"""
 

 


























以上是关于numpy模块的简单介绍的主要内容,如果未能解决你的问题,请参考以下文章

100天精通Python(数据分析篇)——第49天:初识numpy模块

numpy 模块和 pandas 模块

numpy模块

numpy模块

python的 numpy库学习总结和介绍(超详细)模块

Python机器学习(三十四)Numpy 介绍