{"id":29452,"date":"2021-03-01T12:39:48","date_gmt":"2021-03-01T20:39:48","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29452"},"modified":"2021-03-29T04:21:02","modified_gmt":"2021-03-29T11:21:02","slug":"python-check-if-list-is-empty","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/","title":{"rendered":"Python Check If List Is Empty"},"content":{"rendered":"\n<p>There are several ways to check if a list is empty. The first one covered below, <code>if list returns as false<\/code>, is the most <code>pythonic<\/code>. In other words, it is the one people recommend the most in Python. The other strategies we will discuss are semantically correct (meaning they compile and run) but are not considered good form.&nbsp;<br><\/p>\n\n\n\n<p>In this post, we\u2019ll look into how to check if a list is empty in Python. We will go over several ways to check for a list:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>checking if the list value returns as true or false<\/li><li>using <em>len()<\/em><\/li><li>comparing your list to an empty list<\/li><\/ul>\n\n\n\n<p>First, let\u2019s quickly go over what lists are.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are Python Lists?<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.w3schools.com\/python\/python_lists.asp\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Python lists<\/a> are ways to store various items together. For example, if I want to group my grocery list items into one variable, I would list a list instead of writing one variable per grocery item. Declaring all of these related items in one list saves me time since I don&#8217;t have to declare multiple variables.&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>grocerylist = [&quot;eggs&quot;, &quot;fruits&quot;, &quot;kale&quot;, &quot;grapefruits&quot;]<\/pre><\/div>\n\n\n\n<p>That way, when I want to see my grocery list, I can use a single print statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(grocerylist)\n# ['eggs', 'fruits', 'kale', 'grapefruits']<\/pre><\/div>\n\n\n\n<p>The list does not have to contain only strings like in the above example. It could contain other values such as booleans (<em>true<\/em> or <em>false<\/em>) or numbers, or even a combination of these.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Check if List is Empty: False Values<\/h2>\n\n\n\n<p>In Python, sequences such as strings, tuples, and lists <a href=\"https:\/\/www.python.org\/dev\/peps\/pep-0008\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">return as <em>false<\/em><\/a> if they are empty and as <em>true<\/em> if they\u2019re not empty.&nbsp;<br><\/p>\n\n\n\n<p>The value of any object, including a list, can be evaluated as a boolean value, either <em>true<\/em> or <em>false<\/em>, and this value will be returned to you. In the case of list objects, all have a value of <em>true<\/em> unless they are empty. Knowing this value can be helpful in conditional statements such as the <code>if<\/code> statements below. Based on the result returned (which in this case lets you know if a list is completely empty), you can decide what action to take.&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ourList =[ ]<\/pre><\/div>\n\n\n\n<p>Check if our list does not<strong> <\/strong>return <em>true<\/em>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if not ourList:\n\tprint(&quot;The list is empty&quot;)\n\n#This will return: The list is empty<\/pre><\/div>\n\n\n\n<p>Alternatively, you can check if the list is <em>true<\/em>. If the list is not empty, then you know that you carry out actions like printing the list and values will be shown on the screen!<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if ourList:\n\tprint(&quot;The list is not empty&quot;)\n\n#Since ourList is empty this line will not print-- nothing will print to the screen<\/pre><\/div>\n\n\n\n<p>Stating the name of our list alone along with <code>if<\/code> will make Python evaluate if the list is <em>true <\/em>or <em>false <\/em>depending on whether the list has items or is empty.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using len()<\/h2>\n\n\n\n<p>You can use the length function, <em>len(),<\/em> to check for the length of the list. By extension, you\u2019d be checking for its emptiness. According to the <a href=\"https:\/\/www.python.org\/dev\/peps\/pep-0008\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Python style guide<\/a> it is not recommended that you use <em>len()<\/em> to check for emptiness. This is because you can just check using its inherent boolean value, which is a more elegant and direct option. Using <em>len()<\/em> actually requires more checking by Python behind the scenes.&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ourList =[ ]<\/pre><\/div>\n\n\n\n<p>The below <code>if<\/code> statement is asking if <em>ourList<\/em> has a length value. If so, it will print our statement:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if len(ourList):\n\tprint(&quot;The list is not empty&quot;)\n#Since ourList is empty, this line will not print-- nothing will print to the screen<\/pre><\/div>\n\n\n\n<p>The below <code>if<\/code> statement will ask if <em>ourList<\/em> does not have a length value. If so, it will print our statement:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if not len(ourList):\n\tprint(&quot;The list is empty&quot;)\n#The list is empty<\/pre><\/div>\n\n\n\n<p>Another way to use <em>leng()<\/em> is to compare the result of length to \u201c0\u201d.&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if len(ourList) == 0:\n\tprint(&quot;The list is empty&quot;)\n#The list is empty<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Comparing Against an Empty List<\/h2>\n\n\n\n<p>We can also compare our list against an empty list ([ ]). You may want to do this if you want to make visibly clear what you\u2019re comparing against. This method of comparison is also not the recommended option in Python, although it would be semantically correct. Python has to build an unnecessary list (the [ ] you are comparing yours to), and then do a comparison after that.&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ourList =[ ]\n\nif ourList  == [ ]:\nprint(&quot;The list is empty&quot;)\n#The list is empty<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>We covered several ways to check for a list: by checking if emptiness is <em>true<\/em> or <em>false<\/em>, by using <em>len()<\/em>, and by comparing the list to an empty list. The first strategy we covered, <code>if list returns as false<\/code>, is the one that\u2019s recommended by the Python style guide. You can refer to <a href=\"https:\/\/docs.python.org\/3\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Python documentation<\/a> to see more about programming style guides as well as to see what is new in each new Python update.&nbsp;<br><\/p>\n\n\n\n<p>Interested in learning more about Python? Check out <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">this article<\/a> on Python basics and how to get started on your path towards learning Python. Good luck!<\/p>\n","protected":false},"excerpt":{"rendered":"There are several ways to check if a list is empty. The first one covered below, if list returns as false, is the most pythonic. In other words, it is the one people recommend the most in Python. The other strategies we will discuss are semantically correct (meaning they compile and run) but are not&hellip;","protected":false},"author":114,"featured_media":17678,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-29452","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Python Check If List Is Empty | Career Karma<\/title>\n<meta name=\"description\" content=\"Check out this guide on how to check for list emptiness in Python.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Check If List Is Empty\" \/>\n<meta property=\"og:description\" content=\"Check out this guide on how to check for list emptiness in Python.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-01T20:39:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-29T11:21:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"663\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yessenia Mata\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yessenia Mata\" \/>\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:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\"},\"author\":{\"name\":\"Yessenia Mata\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\"},\"headline\":\"Python Check If List Is Empty\",\"datePublished\":\"2021-03-01T20:39:48+00:00\",\"dateModified\":\"2021-03-29T11:21:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\"},\"wordCount\":717,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\",\"name\":\"Python Check If List Is Empty | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\",\"datePublished\":\"2021-03-01T20:39:48+00:00\",\"dateModified\":\"2021-03-29T11:21:02+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\"},\"description\":\"Check out this guide on how to check for list emptiness in Python.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\",\"width\":1000,\"height\":663},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python Check If List Is Empty\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\",\"name\":\"Yessenia Mata\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg\",\"caption\":\"Yessenia Mata\"},\"description\":\"Yessenia is a technical writer at Career Karma. In addition to contributing to Career Karma as a writer, Yessenia currently works in IT in the San Francisco Bay Area. She has experience with programming languages including Java, Python, HTML, CSS, and JavaScript and is double majoring in CNIT and Computer Science.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/yessenia-m\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python Check If List Is Empty | Career Karma","description":"Check out this guide on how to check for list emptiness in Python.","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:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/","og_locale":"en_US","og_type":"article","og_title":"Python Check If List Is Empty","og_description":"Check out this guide on how to check for list emptiness in Python.","og_url":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-03-01T20:39:48+00:00","article_modified_time":"2021-03-29T11:21:02+00:00","og_image":[{"width":1000,"height":663,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","type":"image\/jpeg"}],"author":"Yessenia Mata","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Yessenia Mata","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/"},"author":{"name":"Yessenia Mata","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3"},"headline":"Python Check If List Is Empty","datePublished":"2021-03-01T20:39:48+00:00","dateModified":"2021-03-29T11:21:02+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/"},"wordCount":717,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/","url":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/","name":"Python Check If List Is Empty | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","datePublished":"2021-03-01T20:39:48+00:00","dateModified":"2021-03-29T11:21:02+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3"},"description":"Check out this guide on how to check for list emptiness in Python.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","width":1000,"height":663},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-check-if-list-is-empty\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"Python Check If List Is Empty"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3","name":"Yessenia Mata","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg","caption":"Yessenia Mata"},"description":"Yessenia is a technical writer at Career Karma. In addition to contributing to Career Karma as a writer, Yessenia currently works in IT in the San Francisco Bay Area. She has experience with programming languages including Java, Python, HTML, CSS, and JavaScript and is double majoring in CNIT and Computer Science.","url":"https:\/\/careerkarma.com\/blog\/author\/yessenia-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/114"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29452"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29452\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17678"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}