第六篇:python中numpy.zeros(np.zeros)的使用方法

Posted FelixApff

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第六篇:python中numpy.zeros(np.zeros)的使用方法相关的知识,希望对你有一定的参考价值。

用法:zeros(shape, dtype=float, order=‘C‘)

返回:返回来一个给定形状和类型的用0填充的数组;

参数:shape:形状

dtype:数据类型,可选参数,默认numpy.float64

dtype类型:

t ,位域,如t4代表4位

b,布尔值,true or false

i,整数,如i8(64位)

u,无符号整数,u8(64位)

f,浮点数,f8(64位)

c,浮点负数,

o,对象,

s,a,字符串,s24

u,unicode,u24

order:可选参数,c代表与c语言类似,行优先;F代表列优先

示例:生成4行10列的数组

import numpy as np
files = [1,3,4,5]
features_matrix = np.zeros((len(files), 10))
print(features_matrix)

参考:https://blog.csdn.net/qq_36621927/article/details/79763585





以上是关于第六篇:python中numpy.zeros(np.zeros)的使用方法的主要内容,如果未能解决你的问题,请参考以下文章

python 基础第六篇

python之旅六第六篇模块

第六篇:面向对象

python全栈开发第六篇Python字符编码

Python开发第六篇:模块

Python学习第六篇:lambda 表达式