{"id":23326,"date":"2020-09-28T20:40:45","date_gmt":"2020-09-29T03:40:45","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23326"},"modified":"2023-12-01T04:01:17","modified_gmt":"2023-12-01T12:01:17","slug":"python-syntaxerror-continue-not-properly-in-loop","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/","title":{"rendered":"Python SyntaxError: continue not properly in loop Solution"},"content":{"rendered":"\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/python-break-and-continue\/\">continue keyword<\/a> moves the order of a program onto the next iteration in a loop. If you use a continue statement outside of a for loop or a while loop, the <code>SyntaxError: continue not properly in loop<\/code> error will be raised.<br><\/p>\n\n\n\n<p>This guide explores what this error means and why you may encounter it. It walks you through an example of this error so you can figure out how it works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SyntaxError: continue not properly in loop<\/h2>\n\n\n\n<p>A continue statement lets you move onto the next iteration in a <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a> or a <a href=\"https:\/\/careerkarma.com\/blog\/do-while-python\/\">while loop<\/a>. Continue statements, like break statements, take no arguments. They stand alone in a program.<br><\/p>\n\n\n\n<p>You can only use a continue statement in a loop. This is because continue statements are designed to appear in loops. You cannot use a continue statement to instruct a program to <code>continue<\/code> outside of a loop because there is no context for the keyword to interpret what needs to continue.<br><\/p>\n\n\n\n<p>Continue statements can appear inside an if statement or another block of code, as long as that block of code is inside a loop.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Let\u2019s build a program that validates the input for an inventory management system at a coffee house. For an input to be valid, it must contain at least three characters.<br><\/p>\n\n\n\n<p>To start, let\u2019s ask the user to insert the name of a product that they want to enter into the system:<br><\/p>\n\n\n\n<p><code>product_name = input(\u201cEnter the product name: \u201d)<br><\/code><\/p>\n\n\n\n<p>Next, let\u2019s validate this response. We\u2019ll use an <a href=\"https:\/\/careerkarma.com\/blog\/python-if-else\/\">if statement<\/a> to make sure that the input is at least three characters long:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>if len(product_name) &lt; 3:\n\tprint(&quot;Product names must be at least three characters long.&quot;)\n\tcontinue\nelse:\n\tbreak\n\nprint(&quot;Your product name is valid.&quot;)\n<\/pre><\/div>\n\n\n\n<p>If a user inserts a product name under three characters long, a message is printed to the console and then a continue statement runs. Otherwise, a break statement runs. We use the <a href=\"https:\/\/careerkarma.com\/blog\/python-len\/\">len() method<\/a> to retrieve the length of the product name.<br><\/p>\n\n\n\n<p>If our product name is valid, a message informing us this is the case is displayed on the console.<br><\/p>\n\n\n\n<p>Now that we\u2019ve written our validator, we are ready to run our code. Let\u2019s see what happens when we run our program:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre> File &quot;main.py&quot;, line 3\n\tcontinue\n\t^\nSyntaxError: 'continue' not properly in loop\n<\/pre><\/div>\n\n\n\n<p>Our code returns an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We\u2019ve used continue statements to tell our program to keep going if a particular condition is met. While we can use a continue statement in an if statement, our continue statement must appear somewhere within a loop.<br><\/p>\n\n\n\n<p>We do not use a loop in our program which makes our use of continue somewhat counterproductive. What\u2019s more is that we are using continue, which causes the error. To fix this error, we need to enclose our code in a loop:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>while True:\n\tproduct_name = input(&quot;Enter the product name: &quot;)\n\nif len(product_name) &lt; 3:\n\tprint(&quot;Product names must be at least three characters long.&quot;)\n\tcontinue\nelse:\n\tbreak\n\nprint(&quot;Your product name is valid.&quot;)\n<\/pre><\/div>\n\n\n\n<p>We have made one change to our code. All of our program is now inside a while loop. This means that our user will be prompted to enter a product name until the loop stops.<br><\/p>\n\n\n\n<p>Our loop only stops if the user inserts a valid product name. Otherwise, a message is printed to the console and our loop will iterate again.<br><\/p>\n\n\n\n<p>Let\u2019s run our program and see what happens:<br><\/p>\n\n\n\n<p>Your product name is valid.<br><\/p>\n\n\n\n<p>Enter the product name: Rwandan<\/p>\n\n\n\n<p>Our code runs successfully! Let&#8217;s try to run our code on an invalid product name:<br><\/p>\n\n\n\n<p>Enter the product name: RW<\/p>\n\n\n\n<p>Product names must be at least three characters long.<\/p>\n\n\n\n<p>Enter the product name:<br><\/p>\n\n\n\n<p>Our program informs us that the product name is invalid and prompts us to insert another product name.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>SyntaxError: continue not properly in loop<\/code> error is raised when you try to use a continue statement outside of a for loop or a while loop. To fix this error, enclose any continue statements in your code inside a loop.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to fix this error like a professional!<br><\/p>\n","protected":false},"excerpt":{"rendered":"The continue keyword moves the order of a program onto the next iteration in a loop. If you use a continue statement outside of a for loop or a while loop, the SyntaxError: continue not properly in loop error will be raised. This guide explores what this error means and why you may encounter it.&hellip;","protected":false},"author":240,"featured_media":3435,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-23326","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 SyntaxError: continue not properly in loop Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop 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-syntaxerror-continue-not-properly-in-loop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python SyntaxError: continue not properly in loop Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\" \/>\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-09-29T03:40:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"797\" \/>\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=\"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-syntaxerror-continue-not-properly-in-loop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python SyntaxError: continue not properly in loop Solution\",\"datePublished\":\"2020-09-29T03:40:45+00:00\",\"dateModified\":\"2023-12-01T12:01:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\"},\"wordCount\":621,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\",\"name\":\"Python SyntaxError: continue not properly in loop Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"datePublished\":\"2020-09-29T03:40:45+00:00\",\"dateModified\":\"2023-12-01T12:01:17+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"width\":1200,\"height\":797},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#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 SyntaxError: continue not properly in loop 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 SyntaxError: continue not properly in loop Solution | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop 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-syntaxerror-continue-not-properly-in-loop\/","og_locale":"en_US","og_type":"article","og_title":"Python SyntaxError: continue not properly in loop Solution","og_description":"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop error.","og_url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-29T03:40:45+00:00","article_modified_time":"2023-12-01T12:01:17+00:00","og_image":[{"width":1200,"height":797,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python SyntaxError: continue not properly in loop Solution","datePublished":"2020-09-29T03:40:45+00:00","dateModified":"2023-12-01T12:01:17+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/"},"wordCount":621,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/","url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/","name":"Python SyntaxError: continue not properly in loop Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","datePublished":"2020-09-29T03:40:45+00:00","dateModified":"2023-12-01T12:01:17+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution to the Python SyntaxError: continue not properly in loop error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","width":1200,"height":797},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-continue-not-properly-in-loop\/#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 SyntaxError: continue not properly in loop 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\/23326","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=23326"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23326\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/3435"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23326"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23326"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}