Python numpy.sctype2char()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程