{"id":23833,"date":"2020-10-07T11:58:41","date_gmt":"2020-10-07T18:58:41","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23833"},"modified":"2023-12-01T04:01:25","modified_gmt":"2023-12-01T12:01:25","slug":"python-syntaxerror-cannot-assign-to-operator","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/","title":{"rendered":"Python SyntaxError: cannot assign to operator Solution"},"content":{"rendered":"\n<p>You cannot assign the result of a calculation to a mathematical operator. If you perform a calculation before an assignment operator appears on a line of code, you\u2019ll encounter the <code>SyntaxError: cannot assign to operator<\/code> error.<br><\/p>\n\n\n\n<p>In this guide, we discuss what this error means and why you may run into it in your programs. We\u2019ll walk through an example of this error so you can learn how to solve it in your code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SyntaxError: cannot assign to operator<\/h2>\n\n\n\n<p>The assignment operator (=) lets you set a value for a variable. Calculations can only appear on the right-hand side of the operator. Consider this line of code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>a = 1 * 3<\/pre><\/div>\n\n\n\n<p>Our program sets the result of evaluating 1 * 3 to the variable \u201ca\u201d. We can now access the result of our calculation at any time in our program by referring to the value \u201ca\u201d.<br><\/p>\n\n\n\n<p>The name of the variable to which we want to assign a value comes first. Then, we specify an equals sign. This equals sign denotes we want to assign a value to a variable. Following the equals sign, we specify a calculation.<br><\/p>\n\n\n\n<p>If you want to assign the result of a sum to a variable, you must use this format. You should not try to evaluate a problem on the left side of an assignment operator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to write a program that calculates the profits a cafe has made on the coffee orders placed in the last day. To start, let\u2019s <a href=\"https:\/\/careerkarma.com\/blog\/how-to-initialize-a-list-in-python\/\">define a list<\/a>. This list will contain all of the purchases customers have made on their range of coffees:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>orders = [2.20, 2.40, 2.60, 2.40, 2.80]<\/pre><\/div>\n\n\n\n<p>We\u2019re going to <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">declare and assign a placeholder value to a variable<\/a> called \u201cprofits\u201d which tracks the cumulative profits made on all of the drinks:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>profits = 0<\/pre><\/div>\n\n\n\n<p>For now, \u201cprofits\u201d is equal to 0. To calculate the value of profits, we are going to subtract $2.00 from the cost of every coffee. This is approximately how much it costs to produce any coffee at the cafe. To do this, we\u2019re going to use a <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for o in orders:\n\to - 2.00 += profits<\/pre><\/div>\n\n\n\n<p>This code iterates through all of the coffees in our list. We subtract $2.00 from the value of each coffee. We then use the <a href=\"https:\/\/careerkarma.com\/blog\/python-operator\/\">addition assignment operator<\/a> (+=) to add the value we calculate to the variable \u201cprofits\u201d.<br><\/p>\n\n\n\n<p>Finally, let\u2019s <a href=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\">print out a message to the console<\/a> that informs us how much the cafe has earned in profit over the last day from their coffee sales:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;The cafe has earned ${} in profit from coffee sales today.&quot;.format(profits))<\/pre><\/div>\n\n\n\n<p>Let\u2019s run our code and see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>  File &quot;main.py&quot;, line 6\n\to - 2.00 += profits\n\t^\nSyntaxError: cannot assign to operator<\/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 tried to evaluate a sum before an assignment operator.<br><\/p>\n\n\n\n<p>This is invalid syntax. We must specify a variable name, and then an assignment operator, followed by the sum we want to evaluate.<br><\/p>\n\n\n\n<p>Python is programmed to interpret the statement before an assignment operator as a variable name. Written in English, Python tries to read our code as:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;Subtract 2.00 from the value &quot;o&quot;. Consider this a variable name. Add the value of &quot;profits&quot; to the variable.&quot;<\/pre><\/div>\n\n\n\n<p>This doesn\u2019t make sense. We want to subtract 2.00 from the value \u201co\u201d and then add the result of our sum to the variable \u201cprofits\u201d.<br><\/p>\n\n\n\n<p>To fix this error, we need to swap around the \u201cprofits\u201d and sum statements in our code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>profits += o - 2.00<\/pre><\/div>\n\n\n\n<p>Python will read this code as \u201cEvaluate o &#8211; 2.00 and add the result of that sum to the \u201cprofits&#8217; variable&#8221;. This is what we want our program to accomplish.<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>The cafe has earned $2.4 in profit from coffee sales today.<\/pre><\/div>\n\n\n\n<p>Our program successfully calculates how much the cafe has earned in profit. The cafe, after subtracting 2.00 from the value of each order, has earned a profit of $2.40 in the last day from coffee sales.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>SyntaxError: cannot assign to operator<\/code> error is raised when you try to evaluate a mathematical statement before an assignment operator.<br><\/p>\n\n\n\n<p>To fix this error, make sure all your variable names appear on the left hand side of an assignment operator and all your mathematical statements appear on the right.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to fix this error like a professional developer!<\/p>\n","protected":false},"excerpt":{"rendered":"You cannot assign the result of a calculation to a mathematical operator. If you perform a calculation before an assignment operator appears on a line of code, you\u2019ll encounter the SyntaxError: cannot assign to operator error. In this guide, we discuss what this error means and why you may run into it in your programs.&hellip;","protected":false},"author":240,"featured_media":14525,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-23833","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: cannot assign to operator Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, 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-syntaxerror-cannot-assign-to-operator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python SyntaxError: cannot assign to operator Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\" \/>\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-10-07T18:58:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\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-cannot-assign-to-operator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python SyntaxError: cannot assign to operator Solution\",\"datePublished\":\"2020-10-07T18:58:41+00:00\",\"dateModified\":\"2023-12-01T12:01:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\"},\"wordCount\":653,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\",\"name\":\"Python SyntaxError: cannot assign to operator Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg\",\"datePublished\":\"2020-10-07T18:58:41+00:00\",\"dateModified\":\"2023-12-01T12:01:25+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg\",\"width\":1000,\"height\":667,\"caption\":\"hand points to something on a laptop computer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#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: cannot assign to operator 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: cannot assign to operator Solution | Career Karma","description":"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, 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-syntaxerror-cannot-assign-to-operator\/","og_locale":"en_US","og_type":"article","og_title":"Python SyntaxError: cannot assign to operator Solution","og_description":"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-07T18:58:41+00:00","article_modified_time":"2023-12-01T12:01:25+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-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-cannot-assign-to-operator\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python SyntaxError: cannot assign to operator Solution","datePublished":"2020-10-07T18:58:41+00:00","dateModified":"2023-12-01T12:01:25+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/"},"wordCount":653,"commentCount":1,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/","url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/","name":"Python SyntaxError: cannot assign to operator Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg","datePublished":"2020-10-07T18:58:41+00:00","dateModified":"2023-12-01T12:01:25+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python SyntaxError: cannot assign to operator error, why the error is raised, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/john-schnobrich-FlPc9_VocJ4-unsplash.jpg","width":1000,"height":667,"caption":"hand points to something on a laptop computer"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-cannot-assign-to-operator\/#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: cannot assign to operator 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\/23833","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=23833"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23833\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/14525"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}