{"id":21221,"date":"2020-08-14T10:54:18","date_gmt":"2020-08-14T17:54:18","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21221"},"modified":"2023-12-01T03:57:52","modified_gmt":"2023-12-01T11:57:52","slug":"python-typeerror-not-enough-arguments-for-format-string","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/","title":{"rendered":"Python TypeError: not enough arguments for format string Solution"},"content":{"rendered":"\n<p>Python strings must be <a href=\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-all-arguments-converted-during-string-formatting\/\">formatted using the correct number of arguments<\/a>. When the number of arguments you specify is less than the number of values you want to format into a string, you encounter an error like \u201cTypeError: not enough arguments for format string\u201d.<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 to help you understand how you can solve this error in your code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TypeError: not enough arguments for format string<\/h2>\n\n\n\n<p>Our error is a TypeError. This means we have tried to do something on a value whose underlying data type does not support that operation.<br><\/p>\n\n\n\n<p>In this case, we work with <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">string<\/a> formatting. Python tells us that we have made a mistake formatting a string.<br><\/p>\n\n\n\n<p>When you format a string, the number of arguments you specify must be equal to the number of values you want to format. Otherwise, you encounter an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>A common situation where this error is raised is when you forget to enclose the arguments in a % string format in parenthesis. This syntax uses the % operator to add values into a string.<br><\/p>\n\n\n\n<p>Here, we build an app that formats a list of student names who are on the honor roll into a string. We start by defining a list of student names:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>students = [&quot;Andy&quot;, &quot;Malcolm&quot;, &quot;Lindsay&quot;, &quot;Lucy&quot;]<\/pre><\/div>\n\n\n\n<p>Next, we format these values into a string using the % syntax:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>honor_roll = &quot;%s, %s, %s, and %s are on the CK High School Honor Roll.&quot; % students[0], students[1], students[2], students[3]\nprint(honor_roll)<\/pre><\/div>\n\n\n\n<p>We format all the four names from our \u201cstudents\u201d <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">array<\/a> into the \u201chonor_roll\u201d string. We use %s inside our string to indicate where the values should be formatted. The % is used after the string to specify which values we want to add into our string.<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 3, in &lt;module&gt;\n\thonor_roll = &quot;%s, %s, %s, and %s are on the CK High School Honor Roll.&quot; % students[0], students[1], students[2], students[3]\nTypeError: not enough arguments for format string<\/pre><\/div>\n\n\n\n<p>Python has encountered an error. Let\u2019s see how we can solve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution #1: Fix String Formatting Syntax<\/h2>\n\n\n\n<p>We\u2019ve made a mistake in how we format strings. When using the % operator, the values you want to add into a string must be enclosed within parentheses.<br><\/p>\n\n\n\n<p>In our above example, we specify the values to add inside our string as a list of comma-separated values. This list does not appear in parentheses.<br><\/p>\n\n\n\n<p>We fix our error by enclosing the values following the % sign in parenthesis:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>honor_roll = &quot;%s, %s, %s, and %s are on the CK High School Honor Roll.&quot; % (students[0], students[1], students[2], students[3])<\/pre><\/div>\n\n\n\n<p>Let\u2019s run our code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Andy, Malcolm, Lindsay, and Lucy are on the CK High School Honor Roll.<\/pre><\/div>\n\n\n\n<p>Our code successfully returns a message informing us of the students on the honor roll.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution #2: Use .format()<\/h2>\n\n\n\n<p>The % syntax is starting to become outdated. There are other methods of formatting strings such as the <a href=\"https:\/\/careerkarma.com\/blog\/python-f-string\/\">.format()<\/a> method which are more favored in modern Python code.<br><\/p>\n\n\n\n<p>To solve our problem, we could use the <code>.format()<\/code> syntax instead of the % syntax:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>honor_roll = &quot;{}, {}, {}, and {} are on the CK High School Honor Roll.&quot;.format(students[0], students[1], students[2], students[3])<\/pre><\/div>\n\n\n\n<p>The structure of this syntax is similar to that of the % method. In our string, we use {} brackets to indicate where we want to add values.<br><\/p>\n\n\n\n<p>We use the <code>.format()<\/code> method to specify the list of values that we want to add into our string. Let\u2019s run our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Andy, Malcolm, Lindsay, and Lucy are on the CK High School Honor Roll.<\/pre><\/div>\n\n\n\n<p>Our program successfully shows us a list of the names of students who are on the honor roll. This list is formatted as part of a string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cTypeError: not enough arguments for format string\u201d error is raised when the number of arguments specified in a string format operation is not equal to the number of values you want to add into a string.<br><\/p>\n\n\n\n<p>To solve this problem, first ensure you enclose all arguments in curly brackets () if you are using the % operator. You can use the <code>.format()<\/code> method as a replacement for the % syntax if you want to fix this error and modernize your code.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to fix this common <a href=\"https:\/\/careerkarma.com\/blog\/python-vs-java\/\">Python<\/a> error like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"Python strings must be formatted using the correct number of arguments. When the number of arguments you specify is less than the number of values you want to format into a string, you encounter an error like \u201cTypeError: not enough arguments for format string\u201d. In this guide, we talk about what this error means and&hellip;","protected":false},"author":240,"featured_media":21222,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21221","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 TypeError: not enough arguments for format string | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python TypeError: not enough arguments for format string, 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-typeerror-not-enough-arguments-for-format-string\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python TypeError: not enough arguments for format string Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python TypeError: not enough arguments for format string, how the error works, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\" \/>\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-14T17:54:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-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-typeerror-not-enough-arguments-for-format-string\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python TypeError: not enough arguments for format string Solution\",\"datePublished\":\"2020-08-14T17:54:18+00:00\",\"dateModified\":\"2023-12-01T11:57:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\"},\"wordCount\":612,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\",\"name\":\"Python TypeError: not enough arguments for format string | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg\",\"datePublished\":\"2020-08-14T17:54:18+00:00\",\"dateModified\":\"2023-12-01T11:57:52+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python TypeError: not enough arguments for format string, how the error works, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#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 TypeError: not enough arguments for format string 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 TypeError: not enough arguments for format string | Career Karma","description":"On Career Karma, learn about the Python TypeError: not enough arguments for format string, 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-typeerror-not-enough-arguments-for-format-string\/","og_locale":"en_US","og_type":"article","og_title":"Python TypeError: not enough arguments for format string Solution","og_description":"On Career Karma, learn about the Python TypeError: not enough arguments for format string, how the error works, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-14T17:54:18+00:00","article_modified_time":"2023-12-01T11:57:52+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-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-typeerror-not-enough-arguments-for-format-string\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python TypeError: not enough arguments for format string Solution","datePublished":"2020-08-14T17:54:18+00:00","dateModified":"2023-12-01T11:57:52+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/"},"wordCount":612,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/","url":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/","name":"Python TypeError: not enough arguments for format string | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg","datePublished":"2020-08-14T17:54:18+00:00","dateModified":"2023-12-01T11:57:52+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python TypeError: not enough arguments for format string, how the error works, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nikolay-tarashchenko-fti42Pzxcis-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-not-enough-arguments-for-format-string\/#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 TypeError: not enough arguments for format string 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\/21221","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=21221"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21221\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21222"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21221"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21221"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21221"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}