Python numpy.sctype2char()函数
numpy.sctype2char()函数返回一个标量dtype的字符串表示。
语法: numpy.sctype2char(sctype)
参数 :
sctype : [标量dtype或对象] 如果一个sctype是一个标量dtype,则返回相应的字符串。如果是一个对象,sctype2char试图推断其标量类型,然后返回相应的字符串。
返回: [str] 与标量类型对应的字符串字符。
代码#1:
# Python program explaining
# numpy.sctype2char() function
# importing numpy as geek
import numpy as geek
x = geek.array([1., 2-1.j])
gfg = geek.sctype2char(x)
print (gfg)
输出 :
D
代码#2:
# Python program explaining
# numpy.sctype2char() function
# importing numpy as geek
import numpy as geek
gfg = geek.sctype2char(list)
print (gfg)
输出 :
0