Answers for "python hasattr function"

3

hasattr in python

The hasattr() function returns True if the specified object has the specified attribute, otherwise False .
Posted by: Guest on January-09-2021
1

python hasattribute

hasattr(object, name)
Posted by: Guest on June-17-2020
0

python hasattr function

class Student:
    name = 'John'
    age  = 23
 
student = Student()
 
print('Does student has name?: ', hasattr(student, 'name'))
print('Does student has marks?: ', hasattr(student, 'marks'))

# Output:
# Does student has name?:  True
# Does student has marks?:  False
Posted by: Guest on October-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language