{"id":21056,"date":"2020-08-10T09:43:14","date_gmt":"2020-08-10T16:43:14","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21056"},"modified":"2023-12-01T03:57:25","modified_gmt":"2023-12-01T11:57:25","slug":"python-indexerror-tuple-index-out-of-range","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/","title":{"rendered":"Python IndexError: tuple index out of range Solution"},"content":{"rendered":"\n<p>Like lists, <a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python<\/a> tuples are indexed. This means each value in a tuple has a number you can use to access that value. When you try to access an item in a tuple that does not exist, Python returns an error that says \u201ctuple index out of range\u201d.<br><\/p>\n\n\n\n<p>In this guide, we explain what this common Python error means and why it is raised. We walk through an example scenario with this problem present so that we can figure out how to solve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Problem Analysis: IndexError: tuple index out of range<\/h2>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/python-tuples\/\">Tuples<\/a> are indexed starting from 0. Every subsequent value in a tuple is assigned a number that is one greater than the last. Take a look at a tuple:<br><\/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>This tuple contains five values. Each value has its own index number:<br><\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>Robin<\/td><td>Collared Dove<\/td><td>Great Tit<\/td><td>Goldfinch<\/td><td>Chaffinch<\/td><\/tr><tr><td>0<\/td><td>1<\/td><td>2<\/td><td>3<\/td><td>4<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p><\/p>\n\n\n\n<p>To access the value \u201cRobin\u201d in our tuple, we would use this code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(birds[0])<\/pre><\/div>\n\n\n\n<p>Our code returns: Robin. We access the value at the <a href=\"https:\/\/careerkarma.com\/blog\/python-index\/\">index position 1<\/a> and print it to the console. We could do this with any value in our list.<br><\/p>\n\n\n\n<p>If we try to access an item that is outside our tuple, an error will be raised.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Let\u2019s write a program that prints out the last three values in a tuple. Our tuple contains a list of United Kingdom cities. Let\u2019s start by declaring a tuple:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>cities = (&quot;Edinburgh&quot;, &quot;London&quot;, &quot;Southend&quot;, &quot;Bristol&quot;, &quot;Cambridge&quot;)<\/pre><\/div>\n\n\n\n<p>Next, we print out the last three values. We will do this using a for loop and a <code>range()<\/code> statement. The <a href=\"https:\/\/careerkarma.com\/blog\/python-range\/\">range() statement<\/a> creates a list of numbers between a particular range so that we can iterate over the items in our list whose index numbers are in that range.<br><\/p>\n\n\n\n<p>Here is the code for our <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for i in range(3, 6):\n\tprint(birds[i])<\/pre><\/div>\n\n\n\n<p>Let\u2019s try to run our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Goldfinch\nChaffinch\nTraceback (most recent call last):\n  File &quot;main.py&quot;, line 4, in &lt;module&gt;\n\tprint(birds[i])\nIndexError: tuple index out of range<\/pre><\/div>\n\n\n\n<p>Our code prints out the values Goldfinch and Chaffinch. These are the last two values in our list. It does not print out a third value.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>Our <code>range()<\/code> statement creates a list of numbers between the range of 3 and 6. This list is inclusive of 3 and exclusive of 6. Our list is only indexed up to 4. This means that our loop will try to access a bird at the index position 5 in our tuple because 5 is in our range.<br><\/p>\n\n\n\n<p>Let\u2019s see what happens if we try to print out birds[5] individually:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(birds[5])<\/pre><\/div>\n\n\n\n<p>Our code returns:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Traceback (most recent call last):\n  File &quot;main.py&quot;, line 3, in &lt;module&gt;\n\tprint(birds[5])\nIndexError: tuple index out of range<\/pre><\/div>\n\n\n\n<p>The same error is present. This is because we try to access items in our list as if they are indexed from 1. Tuples are indexed from 0.<br><\/p>\n\n\n\n<p>To solve this error, we need to revise our <code>range()<\/code> statement so it only prints the last three items in our tuple. Our range should go from 2 to 5:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for i in range(2, 5):\n\tprint(birds[i])<\/pre><\/div>\n\n\n\n<p>Let\u2019s run our revised code and see what happens:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Great Tit\nGoldfinch\nChaffinch<\/pre><\/div>\n\n\n\n<p>Our code successfully prints out the last three items in our list. We&#8217;re now accessing items at the index positions 2, 3, and 4. All of these positions are valid so our code now works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The IndexError: tuple index out of range error occurs when you try to access an item in a tuple that does not exist. To solve this problem, make sure that whenever you access an item from a tuple that the item for which you are looking exists.<br><\/p>\n\n\n\n<p>The most common cause of this error is forgetting that tuples are indexed from 0. Start counting from 0 when you are trying to access a value from a tuple. As a beginner, this can feel odd. As you spend more time coding in Python, counting from 0 will become second-nature.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to solve this Python error like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"Like lists, Python tuples are indexed. This means each value in a tuple has a number you can use to access that value. When you try to access an item in a tuple that does not exist, Python returns an error that says \u201ctuple index out of range\u201d. In this guide, we explain what this&hellip;","protected":false},"author":240,"featured_media":21057,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21056","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 IndexError: tuple index out of range Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.\" \/>\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-indexerror-tuple-index-out-of-range\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python IndexError: tuple index out of range Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\" \/>\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-08-10T16:43:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"681\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python IndexError: tuple index out of range Solution\",\"datePublished\":\"2020-08-10T16:43:14+00:00\",\"dateModified\":\"2023-12-01T11:57:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\"},\"wordCount\":601,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\",\"name\":\"Python IndexError: tuple index out of range Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg\",\"datePublished\":\"2020-08-10T16:43:14+00:00\",\"dateModified\":\"2023-12-01T11:57:25+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg\",\"width\":1020,\"height\":681},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#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 IndexError: tuple index out of range Solution\"}]},{\"@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 IndexError: tuple index out of range Solution | Career Karma","description":"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.","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-indexerror-tuple-index-out-of-range\/","og_locale":"en_US","og_type":"article","og_title":"Python IndexError: tuple index out of range Solution","og_description":"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-10T16:43:14+00:00","article_modified_time":"2023-12-01T11:57:25+00:00","og_image":[{"width":1020,"height":681,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python IndexError: tuple index out of range Solution","datePublished":"2020-08-10T16:43:14+00:00","dateModified":"2023-12-01T11:57:25+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/"},"wordCount":601,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/","url":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/","name":"Python IndexError: tuple index out of range Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg","datePublished":"2020-08-10T16:43:14+00:00","dateModified":"2023-12-01T11:57:25+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python IndexError: tuple index out of range error, how the error works, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christina-wocintechchat-com-PzAd5XCyFJo-unsplash.jpg","width":1020,"height":681},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-indexerror-tuple-index-out-of-range\/#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 IndexError: tuple index out of range Solution"}]},{"@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\/21056","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=21056"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21056\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21057"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21056"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21056"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21056"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}