{"id":17677,"date":"2021-01-18T04:19:54","date_gmt":"2021-01-18T12:19:54","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=17677"},"modified":"2023-12-01T04:08:10","modified_gmt":"2023-12-01T12:08:10","slug":"python-insert","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-insert\/","title":{"rendered":"Python insert(): A Complete Guide"},"content":{"rendered":"\n<p><em>The Python insert() method adds an item to a list. This method accepts two arguments: the position at which you want to add the item, and the item you want to add.<\/em><\/p>\n\n\n\n<p>Suppose you have a list of student names, and a new student joins your class. To keep your list up to date, you would want to add the new student\u2019s name to your list of existing class members.<\/p>\n\n\n\n<p>That\u2019s where the Python <em>insert()<\/em> method comes in. The <em>insert()<\/em> method allows you to add an element into a list at a given index position.<\/p>\n\n\n\n<p>This tutorial will discuss how to use the Python <em>insert()<\/em> method to add an element to a list at a specific position. We&#8217;ll walk through an example to help you get started with this method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Lists: A Refresher<\/h2>\n\n\n\n<p>A list is a type of data that can store one or more items in an order. For instance, a list could be used to store the names of all books in a library. Or a list could store the phone numbers of everyone who has made a reservation at a restaurant.<\/p>\n\n\n\n<p>Here is an example of a list in Python:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>birds = [&quot;Robin&quot;, &quot;Collared Dove&quot;, &quot;Great Tit&quot;, &quot;Goldfinch&quot;, &quot;Chaffinch&quot;]<\/pre><\/div>\n\n\n\n<p>Each item in our list has its own index number, starting from 0, which we can use to access items individually in our list. So, <em>Robin<\/em> has the index number 0, <em>Collared Dove<\/em> has the index number 1, and so on.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python insert() Method<\/h2>\n\n\n\n<p>The Python <em>insert()<\/em> method adds an element to a specific position in a list. insert() accepts the position at which you want to add the new item and the new item you want to add as arguments.<\/p>\n\n\n\n<p>The syntax for the <em>insert()<\/em> method is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>list_name.insert(index, element)<\/pre><\/div>\n\n\n\n<p>We can see this method accepts two parameters. The parameters for the <em>insert()<\/em> method are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>index<\/strong>: The position where an element should be inserted.<\/li><li><strong>element<\/strong>: The item you want to add to your list.<\/li><\/ul>\n\n\n\n<p>This method is similar to the Python append() method, which also adds an item to a list. However, while <em>append()<\/em> adds an item to the end of a list, <em>insert()<\/em> adds an item to a list at a specific position.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">insert() Python Example<\/h2>\n\n\n\n<p>Let\u2019s suppose that our list from earlier stores an account of all the birds we have seen in our garden this year. After a birdwatching session, we have spotted a new bird: the Starling. We want to add this bird to our list, at the very start.<\/p>\n\n\n\n<p>To do so, we could use the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>birds = [&quot;Robin&quot;, &quot;Collared Dove&quot;, &quot;Great Tit&quot;, &quot;Goldfinch&quot;, &quot;Chaffinch&quot;]\nbirds.insert(0, &quot;Starling&quot;)\nprint(birds)\n<\/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>[\u2018Starling\u2019, \u2018Robin\u2019, \u2018Collared Dove\u2019, \u2018Great Tit\u2019, \u2018Goldfinch\u2019, \u2018Chaffinch\u2019]<\/pre><\/div>\n\n\n\n<p>First, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">Python array<\/a> called <em>birds.<\/em> This array stores a list of the birds we have spotted.<\/p>\n\n\n\n<p>We use the <em>insert()<\/em> method to add the <em>Starling<\/em> to our list of birds. Because we want to add our bird to the start of our list, we specify the index parameter 0. This adds the value <em>Starling<\/em> to the start of our list.<\/p>\n\n\n\n<p>We print out the updated contents of our list using the <em>print()<\/em> function.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Add a List to a List<\/h3>\n\n\n\n<p>In the above example, we added a string to our list. But, we could use the <em>insert()<\/em> list method to add any type of data instead.<\/p>\n\n\n\n<p>Suppose we have a list that stores two lists. One of the lists stores the birds we have seen, and the other list stores the birds we want to see.<\/p>\n\n\n\n<p>We want to add a new list which lists the birds we think we have seen. This list should store the birds where we have had no confirmation from someone else that we have actually seen a bird. But, we might have seen them.<\/p>\n\n\n\n<p>To add our list of unconfirmed sights to a list, we could use this code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>birds = [\n\t[&quot;Robin&quot;, &quot;Collared Dove&quot;, &quot;Great Tit&quot;, &quot;Goldfinch&quot;, &quot;Chaffinch&quot;],\n\t[&quot;Dunnock&quot;, &quot;Long-tailed Tit&quot;, &quot;Greenfinch&quot;]\n]\n\nlist_to_add = [&quot;Song Thrush&quot;, &quot;Grey Tit&quot;]\n\nbirds.insert(1, list_to_add)\nprint(birds)<\/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>[[\u2018Robin\u2019, \u2018Collared Dove\u2019, \u2018Great Tit\u2019, \u2018Goldfinch\u2019, \u2018Chaffinch\u2019], [\u2018Song Thrush\u2019, \u2018Grey Tit\u2019], [\u2018Dunnock\u2019, \u2018Long-tailed Tit\u2019, \u2018Greenfinch\u2019]]<\/pre><\/div>\n\n\n\n<p>First, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">Python variable<\/a> called birds which stores a list. This list contains two lists. The first list stores a list of birds that we have seen, and the other stores the list of birds we want to see.<\/p>\n\n\n\n<p>We have declared another list that stores the names of all the birds we think we have seen, but we are not sure about. Next, we use the <em>insert()<\/em> method to add this list to the index position 1 in our <em>birds<\/em> list.<\/p>\n\n\n\n<p>The contents of the variable <em>list_to<\/em><em>_add<\/em> were added at index position 1. This means the new list came after index position 0. So, the new list is the second list in our list of lists.<\/p>\n\n\n\n<p>Similarly, you can use the <em>insert()<\/em> method to add numbers, booleans, <a href=\"https:\/\/careerkarma.com\/blog\/python-tuples\/\">Python tuples<\/a>, and other data types to a list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python insert() method adds item to a list at a specific position in a list. insert() accepts two arguments. These are the position of the new item and the value of the new item you want to add to your list.<\/p>\n\n\n\n<p>Like the append() method, insert() adds an item to a list. But, you cannot specify the position of the new item using the append() method.<\/p>\n\n\n\n<p>This tutorial discussed, with reference to examples, the basics of Python lists and how to use the insert(). Now you\u2019re ready to start using the insert() method like a Python pro!<\/p>\n\n\n\n<p>Do you want to learn more about coding in Python? Check out our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python tutorial<\/a>. This guide contains a list of top courses, learning resources, and books you can use to build your Python knowledge.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python insert() method adds an item to a list. This method accepts two arguments: the position at which you want to add the item, and the item you want to add. Suppose you have a list of student names, and a new student joins your class. To keep your list up to date, you&hellip;","protected":false},"author":240,"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-17677","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 insert(): A Complete Guide: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.\" \/>\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-insert\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python insert(): A Complete Guide\" \/>\n<meta property=\"og:description\" content=\"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-insert\/\" \/>\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-01-18T12:19:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:08:10+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=\"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-insert\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python insert(): A Complete Guide\",\"datePublished\":\"2021-01-18T12:19:54+00:00\",\"dateModified\":\"2023-12-01T12:08:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/\"},\"wordCount\":902,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/#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-insert\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-insert\/\",\"name\":\"Python insert(): A Complete Guide: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg\",\"datePublished\":\"2021-01-18T12:19:54+00:00\",\"dateModified\":\"2023-12-01T12:08:10+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-insert\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-insert\/#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-insert\/#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 insert(): A Complete 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 insert(): A Complete Guide: A Complete Guide | Career Karma","description":"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.","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-insert\/","og_locale":"en_US","og_type":"article","og_title":"Python insert(): A Complete Guide","og_description":"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.","og_url":"https:\/\/careerkarma.com\/blog\/python-insert\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-18T12:19:54+00:00","article_modified_time":"2023-12-01T12:08:10+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":"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-insert\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python insert(): A Complete Guide","datePublished":"2021-01-18T12:19:54+00:00","dateModified":"2023-12-01T12:08:10+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/"},"wordCount":902,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/#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-insert\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-insert\/","url":"https:\/\/careerkarma.com\/blog\/python-insert\/","name":"Python insert(): A Complete Guide: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/code-coding-computer-data-574070.jpg","datePublished":"2021-01-18T12:19:54+00:00","dateModified":"2023-12-01T12:08:10+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python insert() function allows you to add an item to a particular position in a list. On Career Karma, learn how to use the list insert() function.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-insert\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-insert\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-insert\/#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-insert\/#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 insert(): A Complete 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\/17677","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=17677"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/17677\/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=17677"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=17677"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=17677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}