The function hasattr () in Python
The hasattr () function in Python is used to check if the input object has the property you want to find.
The hasattr () function in Python is used to check if the input object has the property you want to find. How is the syntax of hasattr () function, what parameters does it have and how to use it? Invites you to read the track.
The syntax of hasattr () function in Python
hasattr(doituong, tenthuoctinh)
Parameters of hasattr () function :
The hasattr () function has 2 parameters:
- Doituong: object you want to check
- tenthuoctinh: name of the attribute to search
Note :
Function hasattr () returns:
- TRUE if the object has a transmission attribute.
- FALSE if the object has no transmission attribute.
Example: How does hasattr () function work?
class Nhanvien:
tuoi = 31
ten = 'QuachTinh'
nhanvien = Nhanvien()
print('Doi tuong Nhanvien co thuoc tinh tuoi khong?:', hasattr(nhanvien, 'tuoi'))
print('Doi tuong Nhanvien co thuoc tinh ten khong?:', hasattr(nhanvien, 'ten'))
print('Doi tuong Nhanvien co thuoc tinh luong khong?:', hasattr(nhanvien, 'luong'))
Run the program, the result is:
Doi tuong Nhanvien co thuoc tinh tuoi khong?: True
Doi tuong Nhanvien co thuoc tinh ten khong?: True
Doi tuong Nhanvien co thuoc tinh luong khong?: False
Previous lesson: Hex () function in Python
Next lesson: filter () function in Python
Update 25 May 2019
You should read it
- Int () function in Python
- The function dir () in Python
- The ord () function in Python
- The function id () in Python
- Max () function in Python
- Zip () function in Python
- Hex () function in Python
- The iter () function in Python
- Exec () function in Python
- The compile () function in Python
- The function set () in Python
- The dict () function in Python
Maybe you are interested
Close-up of a diver's encounter with anaconda and piranha in the Brazilian river The woman caught a giant tuna weighing 411 kg 11 fastest swimming fish in the world What does the 'super slow' 7680fps movie recording feature on the Mate 30 Pro do? Hitman Sniper famous game is being free on iOS and Android How to create slow motion videos on Android?