“Python Hasattr -Funktion” Code-Antworten

Python hasattribute

hasattr(object, name)
Smoggy Squirrel

Python Hasattr -Funktion

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
Glorious Gnat

Ähnliche Antworten wie “Python Hasattr -Funktion”

Fragen ähnlich wie “Python Hasattr -Funktion”

Weitere verwandte Antworten zu “Python Hasattr -Funktion” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen