Python Programming Training Certification
Flexible Hours
100 Assignments
Instructor Led online Training
50 LMS Access
24X7 Support
100% Skill Level
Enquire Now
Course Overview
Python hasattr() Function
The python hasattr() function returns true if an object has given named attribute. Otherwise, it returns false.
Signature
- hasattr(object, attribute)
Parameters
object: It is an object whose named attribute is to be checked.
attribute: It is the name of the attribute that you want to search.
Return
It returns true if an object has given named attribute. Otherwise, it returns false.
Python hasattr() Function Example 1
The below example shows the working of hasattr().
-
class Employee:
age = 21
name = ‘Phill’employee = Employee()
print(‘Employee has age?:’, hasattr(employee, ‘age’))
print(‘Employee has salary?:’, hasattr(employee, ‘salary’))
Output:
- Employee has age?: True
Employee has salary?: False
Explanation: In the above example, we have created a class named as Employee, then we create the object of the Employee class, i.e., employee. The hasattr(employee, ‘age’) returns the true value as the employee object contains the age named attribute, while hasattr(employee, ‘salary’)) returns false value as the employee object does not contain the salary named attribute.
Candidate’s Journey During Our Training Program
Expert’s Advice & Selection of Module
Choosing the right type of module for the training is half the battle & Our Team of experts will help & guide you.
Get Trained
Get Trained & Learn End to End Implementation from our Expert Trainer who are working on the same domain.
Work on Projects
We Do make our student’s work on multiple case studies , scenario based tasks & projects in order to provide real-time exposure to them.
Placements
We have a dedicated placement cell in order to provide placement assistance & relevant interviews to our candididates till selection
Placement Partner