Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

python-datamodel

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))

Categories python Tags debugging, introspection, pretty-print, python, python-datamodel Leave a comment

Getting the class name of an instance

August 27, 2022 by Tarik

Have you tried the __name__ attribute of the class? ie type(x).__name__ will give you the name of the class, which I think is what you want. >>> import itertools >>> x = itertools.count(0) >>> type(x).__name__ ‘count’ If you’re still using Python 2, note that the above method works with new-style classes only (in Python 3+ … Read more

Categories python Tags instanceof, introspection, python, python-datamodel Leave a comment
Newer posts
← Previous Page1 Page2

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa