Answers for "python print class attributes"

2

python class get attribute by name

>>> class c:
        pass
o = c()
>>> setattr(o, "foo", "bar")
>>> o.foo
'bar'
>>> getattr(o, "foo")
'bar'
Posted by: Guest on July-01-2020
4

print class python

class yourClass:
    def __str__(self):
        return "value"  #replace value with what you want to print
Posted by: Guest on June-10-2021
0

python print class variables

# to print out the variable names
print(vars(YourClass))

# to print out names and values
for var in vars(YourClass):
    print(getattr(YourClass, var))
Posted by: Guest on March-06-2020

Code answers related to "python print class attributes"

Python Answers by Framework

Browse Popular Code Answers by Language