{"id":17633,"date":"2020-12-14T16:47:43","date_gmt":"2020-12-15T00:47:43","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=17633"},"modified":"2023-12-01T04:05:55","modified_gmt":"2023-12-01T12:05:55","slug":"python-operator","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-operator\/","title":{"rendered":"Python += Operator: A Guide"},"content":{"rendered":"\n<p><em>The Python += operator lets you add two values together and assign the resultant value to a variable. This operator is often referred to as the addition assignment operator. It is shorter than adding two numbers together and then assigning the resulting value using both a + and an = sign separately.<\/em><\/p>\n\n\n\n<p>There may be a case where you want to add two values and assign the resulting value to a variable. That&#8217;s where Python&#8217;s addition assignment operator can come in handy.<\/p>\n\n\n\n<p>This tutorial will discuss using the += operator to add two values and assign the final value to a variable. We&#8217;ll walk through two examples to illustrate this operator in action.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Operators<\/h2>\n\n\n\n<p>In Python, an operator is a symbol that represents a predefined operation. For instance, the plus sign (+) performs an addition operation, and the asterisk (*) performs a multiplication operation.<\/p>\n\n\n\n<p>Suppose we want to keep a running total of two numbers in Python. We could do so using this code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>a = 10\na = a + 7.5\nprint(a)\n<\/pre><\/div>\n\n\n\n<p>Our code returns: <em>17.5<\/em>. We assigned the value 10 to the variable a, and we assigned the value <em>7.5<\/em> to the variable <em>b<\/em>. Then, we added the two numbers using a + b. We printed out the result to the console.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Python += Operator<\/h2>\n\n\n\n<p>The Python += operator adds two values together and assigns the final value to a variable. This operator is called the addition assignment operator. This operator is often used to add values to a counter variable that tracks how many times something has happened.<\/p>\n\n\n\n<p>When you use the addition assignment operator, two numbers will be added. The resultant value will be assigned to a variable.<\/p>\n\n\n\n<p>The syntax for this arithmetic operator is:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>variable_name += value<\/pre><\/div>\n\n\n\n<p>The value of the variable you specify must be either a <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">Python string<\/a> or a number. A number can be an integer or a floating-point value.<\/p>\n\n\n\n<p>Say you specify a string value. The value that comes after the equals sign will be added to the end of the value stored in the variable you specify. If you specify a numeric value, the two numbers will be added.<\/p>\n\n\n\n<p>Let&#8217;s look at two examples of using to use the += operator.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">+= Operator Python: Numerical Example<\/h3>\n\n\n\n<p>Suppose we want to keep a running total of a few numbers. We could do so using the += assignment operator, like this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>a = 10\na += 7.5\nprint(a)\n<\/pre><\/div>\n\n\n\n<p>Our code returns: <em>17.5<\/em>. In our code, you can see that we have used the += operator. This operator is more &#8220;Pythonic&#8221; than the alternative. The alternative is using a plus sign to add two values and the equals sign to assign the value to a variable.<\/p>\n\n\n\n<p>First, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">Python variable<\/a> called <em>a.<\/em> This variable stores the value <em>10<\/em>. Then, we use a += 7.5 to add 7.5 to the <em>a<\/em> variable. Finally, we print out the value of <em>a<\/em> to the console, which returns <em>17.5<\/em>.<\/p>\n\n\n\n<p>Using the addition assignment operator in this example is like writing out <em>a = a + 7.5<\/em>. The result is the same, but the addition assignment operator is easier to read.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">+= Operator Python: String Example<\/h3>\n\n\n\n<p>We have a variable that stores a user&#8217;s first name. At the moment, this variable is equal to &#8220;John&#8221;. We also have a variable that stores John&#8217;s surname. The value of this variable is &#8220;Swanson&#8221;. You can see this variable below:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>forename = &quot;John&quot;\nsurname = &quot; Swanson&quot;<\/pre><\/div>\n\n\n\n<p>We want to add these two names together. Notice that the user&#8217;s surname begins with a space. This is important because the += operator does not add a space to a value. We can merge our two names together using the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>forename += surname<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>John Swanson<\/pre><\/div>\n\n\n\n<p>We have successfully merged the contents of our two variables.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Other Python Assignment Operators<\/h2>\n\n\n\n<p>The Python programming language offers a range of other assignment operators. You can also get membership operators, comparison operators, and identify operators in Python.<\/p>\n\n\n\n<p>Assignment operators let you perform a mathematical function, then assign the resultant value to a variable. Here are a few of the main assignment operators offered by Python:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td><strong>Operator<\/strong><\/td><td><strong>Type<\/strong><\/td><td><strong>Example<\/strong><\/td><td><strong>Equivalent<\/strong><\/td><\/tr><tr><td>=<\/td><td>Equals<\/td><td>a = 2<\/td><td>a = 2<\/td><\/tr><tr><td>+=<\/td><td>Addition<\/td><td>a += 2<\/td><td>a = a + 2<\/td><\/tr><tr><td>-=<\/td><td>Subtraction<\/td><td>a -= 2<\/td><td>a = a &#8211; 2<\/td><\/tr><tr><td>*=<\/td><td>Multiplication<\/td><td>a *= 2<\/td><td>a = a * 2<\/td><\/tr><tr><td>\/=<\/td><td>Division<\/td><td>a \/= 2<\/td><td>a = a \/ 2<\/td><\/tr><tr><td>**<\/td><td>Power<\/td><td>a ** 2<\/td><td>a = a ** 2<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>To learn more about how mathematical operators work in Python, read our beginner\u2019s guide to <a href=\"https:\/\/careerkarma.com\/blog\/python-math-operators\">Python math operators<\/a>. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python += operator performs an addition operator and then assigns the result of the operation to a variable. The += operator is an example of a Python assignment operator. This operator is called the addition assignment operator.<\/p>\n\n\n\n<p>This tutorial discussed, with reference to an example, the basics of Python operators and how to use the += assignment operator. Now you\u2019re equipped with the knowledge you need to use the =+ operator like a professional Python developer!<\/p>\n\n\n\n<p>Are you interested in learning more about the Python programming language? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python guide<\/a> with top learning resources and online courses.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python += operator lets you add two values together and assign the resultant value to a variable. This operator is often referred to as the addition assignment operator. It is shorter than adding two numbers together and then assigning the resulting value using both a + and an = sign separately. There may be&hellip;","protected":false},"author":240,"featured_media":17634,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-17633","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 += Operator: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.\" \/>\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-operator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python += Operator: A Guide\" \/>\n<meta property=\"og:description\" content=\"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-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-12-15T00:47:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\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-operator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python += Operator: A Guide\",\"datePublished\":\"2020-12-15T00:47:43+00:00\",\"dateModified\":\"2023-12-01T12:05:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/\"},\"wordCount\":801,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-operator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-operator\/\",\"name\":\"Python += Operator: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg\",\"datePublished\":\"2020-12-15T00:47:43+00:00\",\"dateModified\":\"2023-12-01T12:05:55+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-operator\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg\",\"width\":1000,\"height\":668},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-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 += Operator: A Guide\"}]},{\"@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 += Operator: A Guide | Career Karma","description":"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.","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-operator\/","og_locale":"en_US","og_type":"article","og_title":"Python += Operator: A Guide","og_description":"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.","og_url":"https:\/\/careerkarma.com\/blog\/python-operator\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-15T00:47:43+00:00","article_modified_time":"2023-12-01T12:05:55+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.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-operator\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python += Operator: A Guide","datePublished":"2020-12-15T00:47:43+00:00","dateModified":"2023-12-01T12:05:55+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/"},"wordCount":801,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-operator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-operator\/","url":"https:\/\/careerkarma.com\/blog\/python-operator\/","name":"Python += Operator: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg","datePublished":"2020-12-15T00:47:43+00:00","dateModified":"2023-12-01T12:05:55+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python += operator allows you to add two numbers, then assign the resultant value to a variable. On Career Karma, learn how to use the += operator.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-operator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-operator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-operator\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/macbook-desk-iphone-technology-9411.jpg","width":1000,"height":668},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-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 += Operator: A Guide"}]},{"@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\/17633","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=17633"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/17633\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17634"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=17633"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=17633"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=17633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}