About 825,000 results
Open links in new tab
  1. dir() function in Python - GeeksforGeeks

    Nov 29, 2023 · The dir() function is a built-in Python tool used to list the attributes (like methods, variables, etc.) of an object. It helps inspect modules, classes, functions, and even user …

  2. Python dir() - Programiz

    The dir() method tries to return a list of valid attributes of the object. In this tutorial, you will learn about the Python dir() method with the help of examples.

  3. Python dir() Function - W3Schools

    The dir() function returns all properties and methods of the specified object, without the values. This function will return all the properties and methods, even built-in properties which are …

  4. dir () | Python’s Built-in Functions – Real Python

    The built-in dir() function lists the names in the current local scope when you call it without arguments. When you call it using an object as an argument, it attempts to return a list of valid …

  5. Python dir() Builtin Function - Python Examples

    Python dir() builtin function is used to get all the properties and methods in a given object as a list. In this tutorial, you will learn the syntax of dir() function, and then its usage with the help of …

  6. The dir() Function in Python: A Complete Guide (with Examples)

    In Python, the dir() function returns a list of the attributes and methods that belong to an object. This can be useful for exploring and discovering the capabilities of an object, as well as for …

  7. Exploring dir () in Python: A Comprehensive Guide - CodeRivers

    Mar 22, 2025 · When you call dir () without any arguments, it returns a list of names in the current local scope. This can be useful in an interactive Python session to quickly see what variables …

  8. Python dir () method with example - CodeSpeedy

    dir() method is Python’s inbuilt method. It takes only one parameter. It will return a list of functions and attributes of an object. Example 1: It is an inbuilt method in Python, so we have no need to …

  9. Learn Python dir () Function from basics to Advance

    Python dir() is a potent built-in function that provides a comprehensive view of the attributes, methods, and functionalities of any object. It allows you to peek inside an object and see what …

  10. Python dir() Built-in Function - codebuns.com

    Python dir () function is a built-in function that returns a list of valid attributes for a given object. If you call dir () without arguments, it returns a list of names in the current scope (like the …

  11. Some results have been removed
Refresh