當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy.issctype()用法及代碼示例


numpy.issctype()函數用於確定給定對象是否表示標量數據類型,如果給定對象表示標量數據類型,則返回true,否則返回false。

用法: numpy.issctype(rep)

參數:
rep :任何輸入。


Return :[bool]檢查rep是否為標量dtype的布爾結果。

代碼1:

# Python program explaining 
# numpy.issctype() function 
  
# importing numpy 
import numpy as geek 
  
# Checking if integers are scalar type 
  
rep = geek.int64 
  
# output boolean value 
out_val = geek.issctype(rep) 
print ("Are integers scalar:", out_val) 
輸出:
Are integers scalar: True

代碼2:

# Python program explaining 
# numpy.issctype() function 
  
# importing numpy 
import numpy as geek 
  
# Checking if list is scalar type 
  
rep =[ 1, 4, 7] 
  
# output boolean value 
out_val = geek.issctype(rep) 
print ("Is list scalar:", out_val) 
輸出:
Is list scalar: False


相關用法


注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 Python | numpy.issctype() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。