Answers for "python printable object"

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

Code answers related to "python printable object"

Python Answers by Framework

Browse Popular Code Answers by Language