{"id":21177,"date":"2020-08-13T23:03:05","date_gmt":"2020-08-14T06:03:05","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21177"},"modified":"2023-12-01T03:57:48","modified_gmt":"2023-12-01T11:57:48","slug":"python-attributeerror-str-object-has-no-attribute-append","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/","title":{"rendered":"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 Solution"},"content":{"rendered":"\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/python-append-to-list\/\">append()<\/a> method adds items to the end of a list. It cannot be used to add items to a string. Python returns an error stating \u201cAttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019\u201d if you try to add values to the end of a string using <code>append()<\/code>.<br><\/p>\n\n\n\n<p>In this guide, we talk about what this error means and why it is raised. We walk through an example of this error in action to help you learn how to fix it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019<\/h2>\n\n\n\n<p>Python has a special function for adding items to the end of a string: <a href=\"https:\/\/careerkarma.com\/blog\/python-concatenate-strings\/\">concatenation<\/a>.<br><\/p>\n\n\n\n<p>To concatenate a string with another string, you use the concatenation operator (+). You use string formatting methods like f strings or <code>.format()<\/code> if you want a value to appear inside another string at a particular point.<br><\/p>\n\n\n\n<p>The <code>append()<\/code> method does not work if you want to add a string to another string because <code>append()<\/code> is only supported by <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">list items<\/a>.<br><\/p>\n\n\n\n<p>The \u201cAttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019\u201d error is raised when developers use <code>append()<\/code> instead of the concatenation operator. It is also raised if you forget to add a value to a string instead of a list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Write a program that makes a string containing the names of all the students in a class that begin with \u201cS\u201d. We start by defining a list that contains each student&#8217;s name and an empty string to which we will add the names that begin with \u201cS\u201d.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>names = [&quot;Sam&quot;, &quot;Sally&quot;, &quot;Adam&quot;, &quot;Paulina&quot;]\ns_names = &quot;&quot;<\/pre><\/div>\n\n\n\n<p>Next, we write a <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a> that goes through this list of names. The code in our for loop will checks whether each name starts with the letter \u201cS\u201d:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for n in names:\n\tif n.startswith(&quot;S&quot;):\n\t\ts_names.append(n)\n\nprint(&quot;The students whose names begin with 'S' are: &quot; + s_names)<\/pre><\/div>\n\n\n\n<p>Our for loop iterates over each name in the \u201cnames\u201d list. In each iteration, our code checks if a name starts with the letter \u201cS\u201d. We do this using the <a href=\"https:\/\/careerkarma.com\/blog\/python-startswith-and-endswith\/\">startswith() method<\/a>.<br><\/p>\n\n\n\n<p>If a students\u2019 name starts with \u201cS\u201d, we add it to the end of \u201cs_names\u201d using the <code>append()<\/code> method. Once all of the names have been iterated over, our program prints out a message informing us of the students whose names begin with \u201cS\u201d.<br><\/p>\n\n\n\n<p>Run our code and see what happens:<\/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 6, in &lt;module&gt;\n\ts_names.append(n)\nAttributeError: 'str' object has no attribute 'append'<\/pre><\/div>\n\n\n\n<p>Our code fails to execute.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We\u2019ve tried to use <code>append()<\/code> to add each name to the end of our \u201cs_names\u201d string. <code>append()<\/code> is not supported on strings which is why an error is returned.<br><\/p>\n\n\n\n<p>We can fix our code by using the concatenation operator to add a name to the end of the \u201cs_names\u201d string. Let\u2019s update our code to use the concatenation operator instead of <code>append()<\/code>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for n in names:\n\tif n.startswith(&quot;S&quot;):\n\t\ts_names = s_names + n + &quot; &quot;<\/pre><\/div>\n\n\n\n<p>This time, we use the assignment operator to change the value of \u201cs_names\u201d. We use plus signs to create a string with the current value of \u201cs_names\u201d, followed by the name our loop is iterating over, followed by a blank space.<br><\/p>\n\n\n\n<p>Run our code again to see if our fix works:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>The students whose names begin with 'S' are: Sam Sally<\/pre><\/div>\n\n\n\n<p>Our code successfully identifies the names that begin with S. These names appear at the end of the string printed to the console. Each name is followed by a space which we specified when we used the concatenation operator in our for loop.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You encounter the \u201cAttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019\u201d error if you try to use the <code>append()<\/code> method to add an item to the end of a string.<br><\/p>\n\n\n\n<p>While the <code>append()<\/code> method lets you add items to the end of a list, it cannot be used to add items onto a string. To solve this error, use the concatenation operator (+) to add items to the end of a string.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to solve this common <a href=\"https:\/\/careerkarma.com\/blog\/what-python-is-used-for\/\">Python<\/a> error like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"The append() method adds items to the end of a list. It cannot be used to add items to a string. Python returns an error stating \u201cAttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019\u201d if you try to add values to the end of a string using append(). In this guide, we talk about what this&hellip;","protected":false},"author":240,"featured_media":21178,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21177","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 AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, 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-attributeerror-str-object-has-no-attribute-append\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\" \/>\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-08-14T06:03:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-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=\"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-attributeerror-str-object-has-no-attribute-append\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 Solution\",\"datePublished\":\"2020-08-14T06:03:05+00:00\",\"dateModified\":\"2023-12-01T11:57:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\"},\"wordCount\":615,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\",\"name\":\"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg\",\"datePublished\":\"2020-08-14T06:03:05+00:00\",\"dateModified\":\"2023-12-01T11:57:48+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#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 AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 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 AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019","description":"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, 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-attributeerror-str-object-has-no-attribute-append\/","og_locale":"en_US","og_type":"article","og_title":"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 Solution","og_description":"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-14T06:03:05+00:00","article_modified_time":"2023-12-01T11:57:48+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-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-attributeerror-str-object-has-no-attribute-append\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 Solution","datePublished":"2020-08-14T06:03:05+00:00","dateModified":"2023-12-01T11:57:48+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/"},"wordCount":615,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/","url":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/","name":"Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg","datePublished":"2020-08-14T06:03:05+00:00","dateModified":"2023-12-01T11:57:48+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019, how the error works, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/jannis-brandt-4mHaSX8zvJI-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-str-object-has-no-attribute-append\/#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 AttributeError: \u2018str\u2019 object has no attribute \u2018append\u2019 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\/21177","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=21177"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21177\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21178"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21177"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21177"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}