{"id":12293,"date":"2020-12-07T00:40:59","date_gmt":"2020-12-07T08:40:59","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12293"},"modified":"2023-12-01T04:05:40","modified_gmt":"2023-12-01T12:05:40","slug":"python-pop","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-pop\/","title":{"rendered":"Python Pop: A Step-By-Step Guide"},"content":{"rendered":"\n<p><em>The Python pop() method removes an item at a specified index value from a list. This method returns the item you have removed so you know what modification has been made to your list. pop() accepts one argument: the index of the item you want to remove.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>You may decide that you want to remove a specific item from a list. For example, say you are writing a program that stores a list of books available in a library. When a book is checked out, you may want to remove and return the book from your list of available books.<\/p>\n\n\n\n<p>The Python language includes a built-in function that can be used to remove an element from a list: <em>pop()<\/em>. The <em>pop()<\/em> method removes an element from a specified position in a list and returns the deleted item.<\/p>\n\n\n\n<p>In this tutorial, we are going to discuss the Python <em>pop()<\/em> method, how it is used, and what arguments the function accepts. Then, we\u2019ll explore a few examples to show how the method can be used with lists.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python pop() Method<\/h2>\n\n\n\n<p>The Python pop() method removes an item from a list at a certain index position. pop() accepts one argument, which is the index position of the item you want to remove:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>list_name.pop(index)<\/pre><\/div>\n\n\n\n<p>The <em>pop()<\/em> function takes in an index value, then checks whether the item exists in the list. If the item does exist, the method will remove the item from the list and return the item it has removed. If the item does not exist, an error will be returned.<\/p>\n\n\n\n<p>Let\u2019s use an example to showcase the <em>pop()<\/em> function and how it removes and returns the item at the index passed through the function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python List pop() Example<\/h2>\n\n\n\n<p>Say that we are building an application that manages the teas sold at our caf\u00e9. We have run low on Earl Grey tea, and we want to remove it from our tea list. Here\u2019s a program we could use to remove Earl Grey from our list of teas while we are out of stock:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>teas = ['Earl Gray', 'Oolong', 'English Breakfast', 'Chai', 'Chamomile']\nremove_earl_gray = teas.pop(0)\n\nprint(remove_earl_gray)\nprint(teas)<\/pre><\/div>\n\n\n\n<p>Our program returns the following: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Earl Gray\n['Oolong', 'English Breakfast', 'Chai', 'Chamomile']<\/pre><\/div>\n\n\n\n<p>On the first line of our code, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">Python variable<\/a>. This variable is a <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">Python array<\/a> that contains five tea names. Then, we use the <em>pop()<\/em> method to remove the tea at the index position from our <em>teas<\/em> array. In this case, that tea is Earl Grey.<\/p>\n\n\n\n<p>Finally, we print both the tea that we have removed and our new list of teas to the Python shell.<\/p>\n\n\n\n<p>In addition, <em>pop()<\/em> can process negative index values. Say that you have received a delivery from your supplier of Earl Grey, but you are now low on Chamomile tea. You could use the following code to remove Chamomile from your list of teas:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>teas = ['Earl Gray', 'Oolong', 'English Breakfast', 'Chai', 'Chamomile']\nremove_chamomile = teas.pop(-1)\n\nprint(remove_chamomile)\nprint(teas)<\/pre><\/div>\n\n\n\n<p>Our code returns: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Chamomile\n['Earl Gray', 'Oolong', 'English Breakfast', 'Chai']<\/pre><\/div>\n\n\n\n<p>We used the same code as we did in our first example. The only difference is that we have specified the index value <em>-1<\/em>, which refers to the last item in our list. So, our code removed <em>Chamomile<\/em> from our list of teas.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">pop() Python: Removing a Non-Existent Value<\/h2>\n\n\n\n<p>An error will be returned if you try to remove an item that does not exist.<\/p>\n\n\n\n<p>This is because <em>pop()<\/em> cannot find the item to which you are referring and so pop() cannot return any value. Here\u2019s what happens when we try to remove a tea at the index position <em>6<\/em> from our list of teas, which does not exist:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>teas = ['Earl Gray', 'Oolong', 'English Breakfast', 'Chai', 'Chamomile']\nremove_tea = teas.pop(6)\n\nprint(remove_tea)<\/pre><\/div>\n\n\n\n<p>Our code returns: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>IndexError: pop index out of range<\/pre><\/div>\n\n\n\n<p>pop() returns an &#8220;IndexError: pop index out of range&#8221; error if you specify an index value that does not exist in the array.<\/p>\n\n\n\n<p>To handle this issue, you could use a <a href=\"https:\/\/careerkarma.com\/blog\/python-try-except\/\">Python try&#8230;except<\/a> block. Specify your pop() method in a &#8220;try&#8221; block and if your code does not work then the contents of the &#8220;except&#8221; block will run:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>try:\n  names = [&quot;Lewis&quot;]\n  names.pop(1);\nexcept:\n\tprint(&quot;This value does not exist.&quot;)<\/pre><\/div>\n\n\n\n<p>In this example, we use a try&#8230;except block to process our pop() statement. Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>This value does not exist.<\/pre><\/div>\n\n\n\n<p>This message is printed to the console because the code in our &#8220;try&#8221; block raised an error. In this case, we tried to remove the item at the index position 1 in the list &#8220;names&#8221;. But, the list only has one item, whose index position is 0.<\/p>\n\n\n\n<p>The &#8220;IndexError: pop index out of range&#8221; error is similar to the &#8220;list index out of range&#8221; error. The list index out of range error occurswill see if you try to access an item that does not exist in a list. Read our guide on the <a href=\"https:\/\/careerkarma.com\/blog\/python-indexerror-list-index-out-of-range\/\">Python list index out of range<\/a> error for more information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python <em>pop()<\/em> method allows you to remove an element from a specified position in a list. This method is useful if you have an existing array that contains a value you want to remove.<\/p>\n\n\n\n<p>In this tutorial, we walked through how the <em>pop()<\/em> method can be used in Python to remove items from a list. We also explored how to handle the &#8220;IndexError: pop index out of range&#8221; error.<\/p>\n\n\n\n<p>For guidance on top Python learning resources, books, and online courses, check out our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python pop() method removes an item at a specified index value from a list. This method returns the item you have removed so you know what modification has been made to your list. pop() accepts one argument: the index of the item you want to remove. You may decide that you want to remove&hellip;","protected":false},"author":240,"featured_media":12598,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-12293","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 Pop: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.\" \/>\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-pop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Pop: A Step-By-Step Guide\" \/>\n<meta property=\"og:description\" content=\"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-pop\/\" \/>\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=\"2020-12-07T08:40:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\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=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Pop: A Step-By-Step Guide\",\"datePublished\":\"2020-12-07T08:40:59+00:00\",\"dateModified\":\"2023-12-01T12:05:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/\"},\"wordCount\":847,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-pop\/\",\"name\":\"Python Pop: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg\",\"datePublished\":\"2020-12-07T08:40:59+00:00\",\"dateModified\":\"2023-12-01T12:05:40+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg\",\"width\":1200,\"height\":675,\"caption\":\"Python pop\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pop\/#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 Pop: A Step-By-Step Guide\"}]},{\"@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\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python Pop: A Step-By-Step Guide | Career Karma","description":"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.","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-pop\/","og_locale":"en_US","og_type":"article","og_title":"Python Pop: A Step-By-Step Guide","og_description":"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/python-pop\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-07T08:40:59+00:00","article_modified_time":"2023-12-01T12:05:40+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Pop: A Step-By-Step Guide","datePublished":"2020-12-07T08:40:59+00:00","dateModified":"2023-12-01T12:05:40+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/"},"wordCount":847,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-pop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-pop\/","url":"https:\/\/careerkarma.com\/blog\/python-pop\/","name":"Python Pop: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg","datePublished":"2020-12-07T08:40:59+00:00","dateModified":"2023-12-01T12:05:40+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python pop method is used by coders to remove a specific item from a list. Learn about the pop method, how it works, and how you can use it on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-pop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/python-pop-1.jpg","width":1200,"height":675,"caption":"Python pop"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-pop\/#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 Pop: A Step-By-Step Guide"}]},{"@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\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12293","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\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=12293"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12293\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12598"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12293"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12293"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}