numpy.mintypecode()函数返回可以将给定类型强制转换为minimum-size类型的字符。
用法: numpy.mintypecode(typechars, typeset = ‘GDFgdf’, default = ‘d’)
参数:
typechars:[str或数组的列表]如果是字符串列表,则每个字符串应表示一个dtype。如果为数组,则使用数组dtype的字符表示。
typeset:[str或str的列表,可选]从中选择返回字符的字符集。默认设置为“ GDFgdf”。
default:[str,可选]默认字符,如果typechars中的所有字符都不与typeset中的字符匹配,则返回此默认字符。
返回:[str]代表找到的minimum-size类型的字符。
代码1:
# Python program explaining
# numpy.mintypecode() function
# importing numpy as geek
import numpy as geek
gfg = geek.mintypecode(['d', 'f', 'S'])
print (gfg)
输出:
d
代码2:
# Python program explaining
# numpy.mintypecode() function
# importing numpy as geek
import numpy as geek
x = geek.array([1.1, 2-1.j])
gfg = geek.mintypecode(x)
print (gfg)
输出:
D
相关用法
- 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.mintypecode() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。