程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[Python rudimentary] the hasattr function determines whether an object contains an attribute

編輯:Python

【python primary 】hasattr Function to determine whether an object contains an attribute

  • 1、 background
  • 2、 grammar
  • 3、 Example

1、 background

hasattr The function is python Built in functions for , similar print The function is the same .
hasattr Function is used to determine whether the object contains the corresponding properties .

among builtins.py The script is about hasattr The function is described as follows :

def hasattr(*args, **kwargs): # real signature unknown
"""
Return whether the object has an attribute with the given name.
This is done by calling getattr(obj, name) and catching AttributeError.
"""
pass

2、 grammar

hasattr(object, name)
among :
object – object .
name – Property name string .

Return value :
If the object has this property returned True, Otherwise return to False.

3、 Example

Check whether the image array has shape attribute .

# encoding: utf-8
import cv2
image=cv2.imread("./2.jpeg")
if hasattr(image,"shape"):
print("[INFO] The shape of the image :{0}".format(image.shape))

Run the following :


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved