Answers for "get a attribute from a object python"

1

python get object attribute by string

x = getattr(t, 'attr1')
setattr(t, 'attr1', 21)
Posted by: Guest on April-23-2020
0

python get attributes of object

field_name = "fullName"
print getattr(user, field_name) # prints content of user.fullName
Posted by: Guest on March-10-2021

Code answers related to "get a attribute from a object python"

Python Answers by Framework

Browse Popular Code Answers by Language