numpy.typename()函数返回给定数据类型代码的描述。
用法: numpy.typename(char)
参数:
char:[str]数据类型代码。
返回:[str]输入数据类型代码的描述。
代码1:
# Python program explaining
# numpy.typename() function
# importing numpy as geek
import numpy as geek
typechars = ['?', 'O', 'b', 'd', 'g', 'f', 'i', 'h', 'l', 'q']
for typechar in typechars:
print(typechar, ':', geek.typename(typechar))
输出:
? : bool O : object b : signed char d : double precision g : long precision f : single precision i : integer h : short l : long integer q : long long integer
代码2:
# Python program explaining
# numpy.typename() function
# importing numpy as geek
import numpy as geek
typechars = ['S1', 'B', 'D', 'G', 'F', 'I', 'H', 'L', 'Q', 'S', 'U', 'V']
for typechar in typechars:
print(typechar, ':', geek.typename(typechar))
输出:
S1 : character B : unsigned char D : complex double precision G : complex long double precision F : complex single precision I : unsigned integer H : unsigned short L : unsigned long integer Q : unsigned long long integer S : string U : unicode V : void
相关用法
- Python Wand function()用法及代码示例
- Python now()用法及代码示例
- Python id()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python str()用法及代码示例
- Python cmp()用法及代码示例
- Python ord()用法及代码示例
- Python dir()用法及代码示例
- Python hex()用法及代码示例
- Python int()用法及代码示例
- Python map()用法及代码示例
- Python oct()用法及代码示例
- Python math.sin()用法及代码示例
- Python bytearray()用法及代码示例
- Python math.tan()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.typename() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。