{"id":20572,"date":"2020-07-30T22:52:42","date_gmt":"2020-07-31T05:52:42","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20572"},"modified":"2023-12-01T03:57:10","modified_gmt":"2023-12-01T11:57:10","slug":"python-typeerror-int-object-is-not-iterable","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/","title":{"rendered":"Python typeerror: \u2018int\u2019 object is not iterable Solution"},"content":{"rendered":"\n<p>Encountering an error is not a problem; it\u2019s a learning opportunity. While developing in Python, you may have seen an error \u201c\u2018int\u2019 object is not iterable\u201d.<br><\/p>\n\n\n\n<p>What does this mean? How do I solve it? Those are the questions we\u2019re going to answer in this article. We will discuss what the \u201c\u2018int\u2019 object is not iterable\u201d error is, why it is raised, and how you can solve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem: typeerror: \u2018int\u2019 object is not iterable<\/h2>\n\n\n\n<p>\u201ctypeerror: \u2018int\u2019 object is not iterable\u201d<br><\/p>\n\n\n\n<p>There are two parts to this error message: TypeError and the error message.<br><\/p>\n\n\n\n<p>A TypeError is raised when a function is applied to an object of the wrong data type. For instance, if you try to apply a mathematical function to a string, or call a value like a function which is not a function, a TypeError is raised.<br><\/p>\n\n\n\n<p>The error message tells us that you have tried to iterate over an object that is not <a href=\"https:\/\/careerkarma.com\/blog\/python-iterator\/\">iterable<\/a>. Iterable objects are items whose values you can access using a \u201c<a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a>\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A Practice Scenario<\/h2>\n\n\n\n<p>One of the most common scenarios in which this error is raised is when you try to use a for loop with a number. This mistake is made because it&#8217;s easy to forget to use the <a href=\"https:\/\/careerkarma.com\/blog\/python-range\/\">range() function<\/a> when you are using a for loop.<br><\/p>\n\n\n\n<p>Consider the following code snippet:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>def count_occurrence(values, to_find):\n\tnumber_of_occurrences = 0\n\tfor v in len(values):\n\t\tif values[v] == to_find:\n\t\t\tnumber_of_occurrences += 1\n\treturn number_of_occurrences\n\nvalues = [1, 2, 3, 3]\ncheck_for_threes = count_occurrence(values, 3)\n\nprint(check_for_threes)<\/pre><\/div>\n\n\n\n<p>This code snippet uses one function. The count_occurance function counts how many times a number appears in the \u201cvalues\u201d list. This function iterates over all the values in \u201cvalues\u201d and keeps a running total of all those equal to a particular number. This number is specified as a parameter called \u201cto_find\u201d.<br><\/p>\n\n\n\n<p>In our main program, we define a list called \u201cvalues\u201d with four values. We call our count_occurrence function to count how many threes are in our list of values. We then print out the response to the console.<br><\/p>\n\n\n\n<p>Let\u2019s run our code:<\/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 9, in &lt;module&gt;\n\tcheck_for_threes = count_occurrence(values, 3)\n  File &quot;main.py&quot;, line 3, in count_occurrence\n\tfor v in len(values):\nTypeError: 'int' object is not iterable<\/pre><\/div>\n\n\n\n<p>Oh no! An error has been raised. Now that we\u2019ve replicated this error, we can solve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>Our error tells us that we\u2019ve tried to iterate over an object that is not iterable. If we look at the error message in detail, we can see it points us to the line where the problem occurs:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for v in len(values):<\/pre><\/div>\n\n\n\n<p>The problem with this line is that we are trying to iterate over a number.<br><\/p>\n\n\n\n<p>len(values) is equal to 4. That\u2019s how many values are in the <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">list<\/a> \u201cvalues\u201d. If we try to iterate over a number, nothing happens. This is because for loops only work with iterable objects.<br><\/p>\n\n\n\n<p>To solve this problem, we need to make sure our for loop iterates over an iterable object. We can add a <code>range()<\/code> statement to our code to do this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for v in range(len(values)):<\/pre><\/div>\n\n\n\n<p>This statement will create an iterable object with a list of values in the range of 0 and the number of items in the \u201cvalues\u201d list.<br><\/p>\n\n\n\n<p>Let\u2019s try to run our code again with the <code>range()<\/code> statement. Our code returns:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>2<\/pre><\/div>\n\n\n\n<p>Our code has successfully found all the instances of 3 in the list. Our code has counted them all up and then printed the total number of times 3 appears in the list to the console.<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/int-object-is-not-iterable?lite=true\"><\/iframe>\n<br>\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>TypeErrors are a common type of error in Python. They occur when you try to apply a function on a value of the wrong type. An \u201c\u2018int\u2019 object is not iterable\u201d error is raised when you try to iterate over an integer value.<br><\/p>\n\n\n\n<p>To solve this error, make sure that you are iterating over an iterable rather than a number.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to solve this error like a <a href=\"https:\/\/careerkarma.com\/blog\/python-projects-beginners\/\">Pythonista<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"Encountering an error is not a problem; it\u2019s a learning opportunity. While developing in Python, you may have seen an error \u201c\u2018int\u2019 object is not iterable\u201d. What does this mean? How do I solve it? Those are the questions we\u2019re going to answer in this article. We will discuss what the \u201c\u2018int\u2019 object is not&hellip;","protected":false},"author":240,"featured_media":20573,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-20572","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 typeerror: \u2018int\u2019 object is not iterable Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this 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-typeerror-int-object-is-not-iterable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python typeerror: \u2018int\u2019 object is not iterable Solution\" \/>\n<meta property=\"og:description\" content=\"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\" \/>\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-07-31T05:52:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\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-typeerror-int-object-is-not-iterable\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python typeerror: \u2018int\u2019 object is not iterable Solution\",\"datePublished\":\"2020-07-31T05:52:42+00:00\",\"dateModified\":\"2023-12-01T11:57:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\"},\"wordCount\":615,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\",\"name\":\"Python typeerror: \u2018int\u2019 object is not iterable Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg\",\"datePublished\":\"2020-07-31T05:52:42+00:00\",\"dateModified\":\"2023-12-01T11:57:10+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#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 typeerror: \u2018int\u2019 object is not iterable 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 typeerror: \u2018int\u2019 object is not iterable Solution | Career Karma","description":"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this 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-typeerror-int-object-is-not-iterable\/","og_locale":"en_US","og_type":"article","og_title":"Python typeerror: \u2018int\u2019 object is not iterable Solution","og_description":"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this error.","og_url":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-31T05:52:42+00:00","article_modified_time":"2023-12-01T11:57:10+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-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-typeerror-int-object-is-not-iterable\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python typeerror: \u2018int\u2019 object is not iterable Solution","datePublished":"2020-07-31T05:52:42+00:00","dateModified":"2023-12-01T11:57:10+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/"},"wordCount":615,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/","url":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/","name":"Python typeerror: \u2018int\u2019 object is not iterable Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg","datePublished":"2020-07-31T05:52:42+00:00","dateModified":"2023-12-01T11:57:10+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python typeerror: \u2018int\u2019 object is not iterable error is raised when you try to iterate over an integer. On Career Karma, learn how to fix this error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/norbert-levajsics-7xGwQp2-SxY-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-iterable\/#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 typeerror: \u2018int\u2019 object is not iterable 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\/20572","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=20572"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20572\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20573"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20572"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20572"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20572"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}