“Python Check si tiene atributo” Código de respuesta

Python Check si tiene atributo

if hasattr(a, 'property'):
    a.property
Troubled Teira

Compruebe si un objeto tiene un atributo en Python

if hasattr(a, 'property'):
    doStuff(a.property)
else:
    otherStuff()
DreamCoder

Respuestas similares a “Python Check si tiene atributo”

Preguntas similares a “Python Check si tiene atributo”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código