{"id":25525113,"date":"2022-05-22T12:00:39","date_gmt":"2022-05-22T06:30:39","guid":{"rendered":"https:\/\/entri.app\/blog\/?p=25525113"},"modified":"2023-11-28T10:49:34","modified_gmt":"2023-11-28T05:19:34","slug":"learn-about-the-collections-module-in-python","status":"publish","type":"post","link":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/","title":{"rendered":"Learn About the Collections Module in Python"},"content":{"rendered":"<p><a href=\"https:\/\/entri.app\/blog\/top-10-tools-python-programmers-should-learn\/\" target=\"_blank\" rel=\"noopener\">Python language<\/a> is one of the most popular <a href=\"https:\/\/entri.app\/blog\/difference-between-object-oriented-programming-and-procedure-oriented-programming\/\" target=\"_blank\" rel=\"noopener\">Object Oriented Programming languages<\/a>. It is one of the most widely used programming languages in the software field. The support given by the python community to its developers is one of its reason for high popularity. There are also a lot of libraries that help developers to complete projects in python language. Python is a high-level programming language. It is a general-purpose programming language. Python programming language is being used for web development, Machine Learning, and other fields in software development. The main advantage of Python is that it is very well suited for beginner programmers.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/entri.app\/course\/python-programming-course\/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-25520910 size-full\" src=\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square.png\" alt=\"Python and Machine Learning Square\" width=\"345\" height=\"345\" srcset=\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square.png 345w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-300x300.png 300w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-150x150.png 150w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-24x24.png 24w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-48x48.png 48w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-96x96.png 96w, https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/04\/Python-and-Machine-Learning-Square-75x75.png 75w\" sizes=\"auto, (max-width: 345px) 100vw, 345px\" \/><\/a><\/p>\n<table>\n<tbody>\n<tr>\n<td style=\"text-align: center;\" colspan=\"3\">\n<h5><span style=\"color: #ffffff;\"><strong>Are you aspiring for a booming career in IT? If YES, then dive in<\/strong><\/span><\/h5>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<h5><a href=\"https:\/\/entri.app\/course\/full-stack-developer-course\/\"><strong>Full Stack Developer Course<\/strong><\/a><\/h5>\n<\/td>\n<td>\n<h5><a href=\"https:\/\/entri.app\/course\/python-programming-course\/\"><strong>Python Programming Course<\/strong><\/a><\/h5>\n<\/td>\n<td>\n<h5><a href=\"https:\/\/entri.app\/course\/data-science-and-machine-learning-course\/\"><strong>Data Science and Machine Learning Course<\/strong><\/a><\/h5>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Python programming language has four different collection data types. They are :<\/p>\n<ol>\n<li>List<\/li>\n<li>Tuple<\/li>\n<li>Sets<\/li>\n<li>Dictionary<\/li>\n<\/ol>\n<p>Apart from these different types, python language comes with built-in modules called collections. These collections have specialized data structures. These modules or collections help in covering the limitations of the four different data types.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/entri.app\/course\/python-programming-course\/\" target=\"_blank\" rel=\"noopener\"><strong>Learn to code from industry experts! Enroll here<\/strong><\/a><\/p>\n<h2>Collections in Python<\/h2>\n<p>Collections in python are of four types. They are data container types. These collections have different characteristics based on their use.<\/p>\n<ul>\n<li>A list is mentioned in square brackets. Lists store duplicate values. It also stores duplicate elements. These duplicate values can be accessed using indexes.<\/li>\n<li>A tuple also contains duplicate entries. It is ordered. A tuple is immutable one.<\/li>\n<li>A set is unordered. It is mentioned in square brackets. It doesn&#8217;t have duplicate entries because it is not indexed.<\/li>\n<li>A dictionary is also mentioned in square brackets. It is mutable in nature. A dictionary consists of key-value pairs.<\/li>\n<\/ul>\n<p>These are inbuilt <a href=\"https:\/\/en.wikipedia.org\/wiki\/Data_type\" target=\"_blank\" rel=\"noopener\">data types<\/a> or collections by Python. But as an added advantage python offers modules called collections.<\/p>\n<p style=\"text-align: center;\"><a class=\"btn btn-default\" href=\"https:\/\/entri.app\/course\/python-programming-course\/\">learn python programming course online ! enroll to get free demo video !<\/a><\/p>\n<h3>Collections Module in Python<\/h3>\n<p>The collections module in python gives specialized <a href=\"https:\/\/entri.app\/blog\/introduction-to-databases-in-python-a-detailed-study\/\" target=\"_blank\" rel=\"noopener\">data structures<\/a>. These modules act as an alternative to the inbuilt data types of python. Let us look at the collection modules in Python.<\/p>\n<ul>\n<li>Namedtuple ()<\/li>\n<\/ul>\n<p>We heard about the in-built data type tuple earlier. namedtuple is a collection module provided by Python. This returns a tuple with a named entry. There will be a name given to each value in the tuple. This also helps in overcoming the problem of accessing the elements using the index values. These values can be accessed easily with the help of namedtuple ().<\/p>\n<ul>\n<li>Deque<\/li>\n<\/ul>\n<p>This is another collection module that is pronounced as the deck. It is an optimized list. It helps in performing deletion and insertion easily in a list. It also offers several other operations which are similar to the functions of built-in data types.<\/p>\n<ul>\n<li>Chainmap<\/li>\n<\/ul>\n<p>Chainmap is more similar to dictionary data type. It helps in a single view of multiple mappings. It normally returns the list of other dictionaries. The importance of a chain map comes when we have more than one dictionary. Chainmap helps in the single view of these dictionaries.<\/p>\n<ul>\n<li>Counter<\/li>\n<\/ul>\n<p>The counter is a sub-class collection module. It is the subclass of the dictionary. It is used to count hashable objects. Apart from the dictionary function counter perform three other functions, viz element function, Most_common (), subtract ().<\/p>\n<table>\n<tbody>\n<tr>\n<td>\n<p style=\"text-align: center;\"><strong>Python Programming Course in Different Cities<\/strong><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/entri.app\/course\/python-training-course-in-trivandrum\/\"><strong>Python Training in Trivandrum | Learn Python Course in Trivandrum<\/strong><\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/entri.app\/course\/python-training-course-in-kochi\/\"><strong>Python Training in Kochi | Learn Python Programming Online<\/strong><\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/entri.app\/course\/python-training-course-in-calicut\/\"><strong>Python Training in Calicut | Learn Python Programming Online in Kozhikode<\/strong><\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<ul>\n<li>OrderedDict<\/li>\n<\/ul>\n<p>This is also a subclass of the dictionary. OderedDict remembers the order. OrderDict remembers the entries which are added in the order. If the value of the key is changed, it will not affect the order and position because it is inserted in order in the dictionary.<\/p>\n<ul>\n<li>Defaultdict<\/li>\n<\/ul>\n<p>Another dictionary class helps in finding the missing values. It helps prevent errors that may happen because of the missing values.<\/p>\n<ul>\n<li>UserDict<\/li>\n<\/ul>\n<p>This class type is very easy to work with. It is also a subclass of the dictionary. It acts as a wrapper around dictionary objects. Dictionary is stimulated by this class.<\/p>\n<ul>\n<li>UserList<\/li>\n<\/ul>\n<p>This is a class that acts as a wrapper around the list of objects. It is a base class for other lists. This class stimulates the list.<\/p>\n<p style=\"text-align: center;\"><strong><a href=\"https:\/\/entri.app\/course\/python-programming-course\/\" target=\"_blank\" rel=\"noopener\">Grab the opportunity to learn Python with Entri! Click Here<\/a><\/strong><\/p>\n<h4>Conclusion<\/h4>\n<p>Python programming language is widely used in the software field for different purposes. It comes with some built-in data type collections. Apart from these data types, there are collection modules available in python. These collections can help in doing the similar and more work than the built-in data types.<\/p>\n<table>\n<tbody>\n<tr>\n<td style=\"text-align: center;\" colspan=\"3\"><strong>Our Other Courses<\/strong><\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/entri.app\/course\/mep-course\/\"><strong>MEP Course<\/strong><\/a><\/td>\n<td><a href=\"https:\/\/entri.app\/course\/quantity-surveying-course\/\"><strong>Quantity Surveying Course<\/strong><\/a><\/td>\n<td><a href=\"https:\/\/entri.app\/course\/montessori-teachers-training-course\/\"><strong>Montessori Teachers Training Course<\/strong><\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/entri.app\/course\/performance-marketing-course\/\"><strong>Performance Marketing Course\u00a0<\/strong><\/a><\/td>\n<td><a href=\"https:\/\/entri.app\/course\/practical-accounting-course\/\"><strong>Practical Accounting Course<\/strong><\/a><\/td>\n<td><a href=\"https:\/\/entri.app\/course\/yoga-teachers-training-course\/\"><strong>Yoga Teachers Training Course<\/strong><\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>Python language is one of the most popular Object Oriented Programming languages. It is one of the most widely used programming languages in the software field. The support given by the python community to its developers is one of its reason for high popularity. There are also a lot of libraries that help developers to [&hellip;]<\/p>\n","protected":false},"author":91,"featured_media":25525114,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[802,1841,1888],"tags":[],"class_list":["post-25525113","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles","category-entri-skilling","category-python-programming"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Learn About the Collections Module in Python - Entri Blog<\/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:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn About the Collections Module in Python - Entri Blog\" \/>\n<meta property=\"og:description\" content=\"Python language is one of the most popular Object Oriented Programming languages. It is one of the most widely used programming languages in the software field. The support given by the python community to its developers is one of its reason for high popularity. There are also a lot of libraries that help developers to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Entri Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/entri.me\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-22T06:30:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-28T05:19:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png\" \/>\n\t<meta property=\"og:image:width\" content=\"820\" \/>\n\t<meta property=\"og:image:height\" content=\"615\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kiranlal VT\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@entri_app\" \/>\n<meta name=\"twitter:site\" content=\"@entri_app\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kiranlal VT\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\"},\"author\":{\"name\":\"Kiranlal VT\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/person\/5c2c274e024447e3b9e8b4ee88389e4f\"},\"headline\":\"Learn About the Collections Module in Python\",\"datePublished\":\"2022-05-22T06:30:39+00:00\",\"dateModified\":\"2023-11-28T05:19:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\"},\"wordCount\":802,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/entri.app\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png\",\"articleSection\":[\"Articles\",\"Entri Skilling\",\"Python Programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\",\"url\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\",\"name\":\"Learn About the Collections Module in Python - Entri Blog\",\"isPartOf\":{\"@id\":\"https:\/\/entri.app\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png\",\"datePublished\":\"2022-05-22T06:30:39+00:00\",\"dateModified\":\"2023-11-28T05:19:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage\",\"url\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png\",\"contentUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png\",\"width\":820,\"height\":615,\"caption\":\"Learn About the Collections Module in Python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/entri.app\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Programming\",\"item\":\"https:\/\/entri.app\/blog\/category\/python-programming\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Learn About the Collections Module in Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/entri.app\/blog\/#website\",\"url\":\"https:\/\/entri.app\/blog\/\",\"name\":\"Entri Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/entri.app\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/entri.app\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/entri.app\/blog\/#organization\",\"name\":\"Entri App\",\"url\":\"https:\/\/entri.app\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png\",\"contentUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png\",\"width\":989,\"height\":446,\"caption\":\"Entri App\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/entri.me\/\",\"https:\/\/x.com\/entri_app\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/person\/5c2c274e024447e3b9e8b4ee88389e4f\",\"name\":\"Kiranlal VT\",\"url\":\"https:\/\/entri.app\/blog\/author\/kiranlal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Learn About the Collections Module in Python - Entri Blog","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:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/","og_locale":"en_US","og_type":"article","og_title":"Learn About the Collections Module in Python - Entri Blog","og_description":"Python language is one of the most popular Object Oriented Programming languages. It is one of the most widely used programming languages in the software field. The support given by the python community to its developers is one of its reason for high popularity. There are also a lot of libraries that help developers to [&hellip;]","og_url":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/","og_site_name":"Entri Blog","article_publisher":"https:\/\/www.facebook.com\/entri.me\/","article_published_time":"2022-05-22T06:30:39+00:00","article_modified_time":"2023-11-28T05:19:34+00:00","og_image":[{"width":820,"height":615,"url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png","type":"image\/png"}],"author":"Kiranlal VT","twitter_card":"summary_large_image","twitter_creator":"@entri_app","twitter_site":"@entri_app","twitter_misc":{"Written by":"Kiranlal VT","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#article","isPartOf":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/"},"author":{"name":"Kiranlal VT","@id":"https:\/\/entri.app\/blog\/#\/schema\/person\/5c2c274e024447e3b9e8b4ee88389e4f"},"headline":"Learn About the Collections Module in Python","datePublished":"2022-05-22T06:30:39+00:00","dateModified":"2023-11-28T05:19:34+00:00","mainEntityOfPage":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/"},"wordCount":802,"commentCount":0,"publisher":{"@id":"https:\/\/entri.app\/blog\/#organization"},"image":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png","articleSection":["Articles","Entri Skilling","Python Programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/","url":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/","name":"Learn About the Collections Module in Python - Entri Blog","isPartOf":{"@id":"https:\/\/entri.app\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage"},"image":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png","datePublished":"2022-05-22T06:30:39+00:00","dateModified":"2023-11-28T05:19:34+00:00","breadcrumb":{"@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#primaryimage","url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png","contentUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2022\/05\/Untitled991.png","width":820,"height":615,"caption":"Learn About the Collections Module in Python"},{"@type":"BreadcrumbList","@id":"https:\/\/entri.app\/blog\/learn-about-the-collections-module-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/entri.app\/blog\/"},{"@type":"ListItem","position":2,"name":"Python Programming","item":"https:\/\/entri.app\/blog\/category\/python-programming\/"},{"@type":"ListItem","position":3,"name":"Learn About the Collections Module in Python"}]},{"@type":"WebSite","@id":"https:\/\/entri.app\/blog\/#website","url":"https:\/\/entri.app\/blog\/","name":"Entri Blog","description":"","publisher":{"@id":"https:\/\/entri.app\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/entri.app\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/entri.app\/blog\/#organization","name":"Entri App","url":"https:\/\/entri.app\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png","contentUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png","width":989,"height":446,"caption":"Entri App"},"image":{"@id":"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/entri.me\/","https:\/\/x.com\/entri_app"]},{"@type":"Person","@id":"https:\/\/entri.app\/blog\/#\/schema\/person\/5c2c274e024447e3b9e8b4ee88389e4f","name":"Kiranlal VT","url":"https:\/\/entri.app\/blog\/author\/kiranlal\/"}]}},"_links":{"self":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25525113","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/users\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/comments?post=25525113"}],"version-history":[{"count":10,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25525113\/revisions"}],"predecessor-version":[{"id":25569549,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25525113\/revisions\/25569549"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/media\/25525114"}],"wp:attachment":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/media?parent=25525113"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/categories?post=25525113"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/tags?post=25525113"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}