Answers for "how to print out an object in python"

4

python print object

print(dir(your_variable))
print(vars(your_variable))
Posted by: Guest on January-22-2021
8

override python print for class

>>> class Test:
...     def __repr__(self):
...         return "Test()"
...     def __str__(self):
...         return "member of Test"
... 
>>> t = Test()
>>> t
Test()
>>> print(t)
member of Test
Posted by: Guest on August-15-2020
1

how to print out all functions of an object in python

#To find out helper functions of a built in object and other information:
help(datatype)
Posted by: Guest on July-30-2021

Code answers related to "how to print out an object in python"

Python Answers by Framework

Browse Popular Code Answers by Language