“Funkcja Python Hasattr” Kod odpowiedzi

Python Hasattribute

hasattr(object, name)
Smoggy Squirrel

Funkcja Python Hasattr

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

Odpowiedzi podobne do “Funkcja Python Hasattr”

Pytania podobne do “Funkcja Python Hasattr”

Więcej pokrewnych odpowiedzi na “Funkcja Python Hasattr” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu