常用命令备查
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用命令备查相关的知识,希望对你有一定的参考价值。
所属模块 | 命令名称 | 使用范例 | 功能说明 |
---|---|---|---|
Python | dir(module) | dir(math) | 查看模块中包含的工具 |
Python | help(object) | help(math.pow) | 查看命令使用方法 |
Python | zip(a,b,...) | l1,l2,l3 = (1,2,3),(4,5,6),(7,8,9);list(zip(l1,l2,l3)) | 返回结果tuple列表:[(1, 4, 7), (2, 5, 8), (3, 6, 9)] |
math | pow(x,y) | pow(2,3)=8 | 乘方,pow(x,y)=x**y |
math | sqrt(x) | sqrt(9)=3 | 开方 |
numpy | zeros(shape,dtype=float,order=‘C‘) | zeros((2,3),dtype=np.byte) | 创建指定类型与形状的矩阵,并初始化为0 |
numpy | ones(shape,dtype=None,order=‘C‘) | ones((2,3),dtype=np.byte) | 创建指定类型与形状的矩阵,并初始化为1 |
numpy | eye(n,m=None,k=0) | eye(5,3,k=2) | 对角矩阵,n行数m列数,k正负表示填充1的对角线偏移主对角线条数 |
numpy | mat(list,dtype=None) | mat([[1,2],[2,3]],dtype=float) | 列表转矩阵,可指定数据类型 |
以上是关于常用命令备查的主要内容,如果未能解决你的问题,请参考以下文章
[转帖]召冠总的 Oracle常用的性能诊断语句. --保存学习备查