“Функция Python hasattr” Ответ

Python Hasattribute

hasattr(object, name)
Smoggy Squirrel

Функция 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

Ответы похожие на “Функция Python hasattr”

Вопросы похожие на “Функция Python hasattr”

Больше похожих ответов на “Функция Python hasattr” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования