{"id":22309,"date":"2020-09-07T22:55:53","date_gmt":"2020-09-08T05:55:53","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22309"},"modified":"2023-12-01T03:59:28","modified_gmt":"2023-12-01T11:59:28","slug":"python-syntaxerror-cant-assign-to-literal","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/","title":{"rendered":"Python SyntaxError: can\u2019t assign to literal Solution"},"content":{"rendered":"\n<p>Variables cannot be assigned to literal values like <a href=\"https:\/\/careerkarma.com\/blog\/python-substring\/\">strings<\/a> or <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\">numbers<\/a>. If you try to assign a variable to a literal, you\u2019ll encounter the \u201cSyntaxError: can\u2019t assign to literal\u201d error.<br><\/p>\n\n\n\n<p>This guide discusses what this error means and why you may encounter it. We\u2019ll explore an example of how to fix this error so that you can build the knowledge you need to solve this error in your own code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SyntaxError: can&#8217;t assign to literal<\/h2>\n\n\n\n<p>A variable is a unique identifier for a value. When you reference a variable, Python will read the value associated with that variable. Python uses an equals sign to assign values to a variable:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>language = &quot;Python&quot;<\/pre><\/div>\n\n\n\n<p>\u201clanguage\u201d is the name of our variable. The equals sign tells Python we are assigning a value to the variable. \u201cPython\u201d is the value that is associated with our variable.<br><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">Variables are containers for values<\/a>. They are not values in themselves. This means you cannot give a variable a name that is equal to a value. If variable names could be equal to a value, Python would not be able to distinguish variables from values.<br><\/p>\n\n\n\n<p>Variables cannot be strings, booleans, or any other data type. They must be declared using the syntax that we discussed above.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to build a program that calculates a discount for a product in a donut store. To start, <a href=\"https:\/\/careerkarma.com\/blog\/python-input\/\">ask the user to insert a price of a donut<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;price&quot; = float(input(&quot;Enter the price of a donut: &quot;))<\/pre><\/div>\n\n\n\n<p>Next, ask the user to choose the percentage discount that should be applied to the donut:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;discount&quot; = float(input(&quot;Enter the discount percentage: &quot;))<\/pre><\/div>\n\n\n\n<p>The <code>input()<\/code> method returns a string. We cannot run mathematical operations on a string so we need to convert the data we gather to a numerical value.&nbsp; We\u2019ve converted both of these values to floats using the <a href=\"https:\/\/careerkarma.com\/blog\/python-float\/\">float() method<\/a>.<br><\/p>\n\n\n\n<p>Now that we have these two values, we can calculate the discounted price:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>discounted_price = round(price - ((price \/ 100) * discount), 2)\n\nprint(&quot;The new cost of a donut is ${}.&quot;.format(discounted_price))<\/pre><\/div>\n\n\n\n<p>We calculate the discounted price using a percentage decrease formula. We round the discounted price to the nearest two decimal places. Then, we print out the discounted price to the console.<br><\/p>\n\n\n\n<p>Let\u2019s run the code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>  File &quot;main.py&quot;, line 1\n\t&quot;price&quot; = input(&quot;Enter the price of a donut: &quot;)\n\t^\nSyntaxError: cannot assign to literal<\/pre><\/div>\n\n\n\n<p>We have run into an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>\u201cprice\u201d is a literal value. It is a string. We have tried to assign a value to this literal. This causes an error because variable names must be identifiers, not values.<br><\/p>\n\n\n\n<p>We can fix this error by removing the quotation marks around our first two variables:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>price = float(input(&quot;Enter the price of a donut: &quot;))\ndiscount = float(input(&quot;Enter the discount percentage: &quot;))<\/pre><\/div>\n\n\n\n<p>Our variables now have unique identifiers. We can use the labels <em>price<\/em> and <em>discount<\/em> to identify these values. Let\u2019s run our program:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter the price of a donut: 2.20\nEnter the discount percentage: 5\nThe new cost of a donut is $2.09.<\/pre><\/div>\n\n\n\n<p>Our code successfully calculates the discounted value of a product.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cSyntaxError: can\u2019t assign to literal\u201d error occurs when you try to assign a value to a literal value such as a boolean, a string, a list, or a number. To solve this error, ensure your variable names are names rather than values.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to fix this error like a professional!<\/p>\n","protected":false},"excerpt":{"rendered":"Variables cannot be assigned to literal values like strings or numbers. If you try to assign a variable to a literal, you\u2019ll encounter the \u201cSyntaxError: can\u2019t assign to literal\u201d error. This guide discusses what this error means and why you may encounter it. We\u2019ll explore an example of how to fix this error so that&hellip;","protected":false},"author":240,"featured_media":22310,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-22309","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: can\u2019t assign to literal Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python 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-cant-assign-to-literal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python SyntaxError: can\u2019t assign to literal Solution\" \/>\n<meta property=\"og:description\" content=\"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\" \/>\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-08T05:55:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:59:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"765\" \/>\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-syntaxerror-cant-assign-to-literal\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python SyntaxError: can\u2019t assign to literal Solution\",\"datePublished\":\"2020-09-08T05:55:53+00:00\",\"dateModified\":\"2023-12-01T11:59:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\"},\"wordCount\":501,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\",\"name\":\"Python SyntaxError: can\u2019t assign to literal Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg\",\"datePublished\":\"2020-09-08T05:55:53+00:00\",\"dateModified\":\"2023-12-01T11:59:28+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg\",\"width\":1020,\"height\":765},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#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: can\u2019t assign to literal 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: can\u2019t assign to literal Solution | Career Karma","description":"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python 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-cant-assign-to-literal\/","og_locale":"en_US","og_type":"article","og_title":"Python SyntaxError: can\u2019t assign to literal Solution","og_description":"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python error.","og_url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-08T05:55:53+00:00","article_modified_time":"2023-12-01T11:59:28+00:00","og_image":[{"width":1020,"height":765,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-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-syntaxerror-cant-assign-to-literal\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python SyntaxError: can\u2019t assign to literal Solution","datePublished":"2020-09-08T05:55:53+00:00","dateModified":"2023-12-01T11:59:28+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/"},"wordCount":501,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/","url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/","name":"Python SyntaxError: can\u2019t assign to literal Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg","datePublished":"2020-09-08T05:55:53+00:00","dateModified":"2023-12-01T11:59:28+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The SyntaxError: can\u2019t assign to literal error is raised when you assign a value to a literal. On Career Karma, learn how to solve this Python error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-jxUuXxUFfp4-unsplash.jpg","width":1020,"height":765},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cant-assign-to-literal\/#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: can\u2019t assign to literal 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\/22309","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=22309"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22309\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22310"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22309"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}