Answers for "how to print an object of a class in python"

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
4

python print object

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

Code answers related to "how to print an object of a class in python"

Python Answers by Framework

Browse Popular Code Answers by Language