{"id":130282,"date":"2023-05-10T17:21:12","date_gmt":"2023-05-10T11:51:12","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?page_id=130282"},"modified":"2024-04-12T14:33:58","modified_gmt":"2024-04-12T09:03:58","slug":"the-dir-function-and-packages","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/","title":{"rendered":"The dir function and packages"},"content":{"rendered":"\n<p><strong>The dir function and packages<\/strong><\/p>\n\n\n\n<p>In Python, the <code>dir()<\/code> function is a built-in function that returns a list of all valid attributes and methods of the object that is passed as its argument.<\/p>\n\n\n\n<p>When called with no arguments, <code>dir()<\/code> returns a list of names in the current local scope. If an object is passed as an argument, <code>dir()<\/code> returns a list of all valid attributes and methods of that object.<\/p>\n\n\n\n<p>For example, let&#8217;s say we have a module named <code>example<\/code> with a function named <code>foo<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># example.py\r\ndef foo():\r\n    print(\"Hello, World!\")\r\n<\/code><\/pre>\n\n\n\n<p>We can use the <code>dir()<\/code> function to list all the attributes and methods available in the <code>example<\/code> module:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import example\r\n\r\nprint(dir(example))\r<\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'foo']\r<\/pre>\n\n\n\n<p>Here, we can see that the <code>example<\/code> module has attributes such as <code>__name__<\/code>, <code>__doc__<\/code>, <code>__file__<\/code>, etc., as well as the <code>foo<\/code> function.<\/p>\n\n\n\n<p>Packages in Python are a way of organizing related modules into a single namespace or directory hierarchy. A package is simply a directory that contains an <code>__init__.py<\/code> file, which can be empty or contain initialization code for the package.<\/p>\n\n\n\n<p>For example, let&#8217;s say we have a package named <code>mypackage<\/code>, which contains two modules: <code>module1<\/code> and <code>module2<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mypackage\/\r\n    __init__.py\r\n    module1.py\r\n    module2.py\r<\/pre>\n\n\n\n<p>We can import the <code>module1<\/code> module from the <code>mypackage<\/code> package using the following syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import mypackage.module1\r<\/pre>\n\n\n\n<p>We can also use the <code>from ... import<\/code> syntax to import specific attributes or functions from a module:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from mypackage.module1 import function1\r<\/pre>\n\n\n\n<p>In this way, packages allow us to organize our code into logical groups, making it easier to manage and reuse.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Apply for Python Certification!<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.vskills.in\/certification\/certified-python-developer\">https:\/\/www.vskills.in\/certification\/certified-python-developer<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong><a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/python-developer\/\" target=\"_blank\" rel=\"noreferrer noopener\">Back to Tutorials<\/a><\/strong><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>The dir function and packages In Python, the dir() function is a built-in function that returns a list of all valid attributes and methods of the object that is passed as its argument. When called with no arguments, dir() returns a list of names in the current local scope. If an object is passed as&#8230;<\/p>\n","protected":false},"author":23,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[252],"tags":[],"class_list":["post-130282","page","type-page","status-publish","hentry","category-python-developer"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The dir function and packages - Tutorial<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The dir function and packages - Tutorial\" \/>\n<meta property=\"og:description\" content=\"The dir function and packages In Python, the dir() function is a built-in function that returns a list of all valid attributes and methods of the object that is passed as its argument. When called with no arguments, dir() returns a list of names in the current local scope. If an object is passed as...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T09:03:58+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/\",\"name\":\"The dir function and packages - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2023-05-10T11:51:12+00:00\",\"dateModified\":\"2024-04-12T09:03:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The dir function and packages\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The dir function and packages - Tutorial","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/","og_locale":"en_US","og_type":"article","og_title":"The dir function and packages - Tutorial","og_description":"The dir function and packages In Python, the dir() function is a built-in function that returns a list of all valid attributes and methods of the object that is passed as its argument. When called with no arguments, dir() returns a list of names in the current local scope. If an object is passed as...","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T09:03:58+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/","name":"The dir function and packages - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2023-05-10T11:51:12+00:00","dateModified":"2024-04-12T09:03:58+00:00","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/the-dir-function-and-packages\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"The dir function and packages"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/130282","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=130282"}],"version-history":[{"count":2,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/130282\/revisions"}],"predecessor-version":[{"id":130286,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/130282\/revisions\/130286"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=130282"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=130282"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=130282"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}