Why is 'dir()' named 'dir' in python?

Viewed 8676

In Python there is a built-in function called dir. This is used to get a list of all the attributes for an object.

I understand what it does, but I am confused about why it is called dir. How is this name related to getting the attributes from an object?

4 Answers
Related