Skip to content

Instantly share code, notes, and snippets.

@Bktero
Bktero / class__str__.py
Last active January 10, 2023 20:30
[Python] Generic __str__ method for a Python class
def __str__(self):
elements = []
for key, value in self.__dict__.items():
elements.append("{key}='{value}'".format(key=key, value=value))
return ', '.join(elements)