Is there a built-in function to print all the current properties and values of an object? August 29, 2022 by Tarik You want vars() mixed with pprint(): from pprint import pprint pprint(vars(your_object))