{"id":22312,"date":"2020-09-08T01:34:53","date_gmt":"2020-09-08T08:34:53","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22312"},"modified":"2023-12-01T03:59:29","modified_gmt":"2023-12-01T11:59:29","slug":"python-syntaxerror-missing-parentheses-in-call-to-print-statement","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/","title":{"rendered":"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 Solution"},"content":{"rendered":"\n<p>In Python 3, you must enclose all <a href=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\">print statements<\/a> with parenthesis. If you try to print out a string to the console without enclosing the string in parenthesis, you\u2019ll encounter the \u201cSyntaxError: Missing parentheses in call to \u2018print\u2019\u201d error.<br><\/p>\n\n\n\n<p>This guide discusses what this error means and how to use the print statement in Python. We\u2019ll walk through an example of this error so you can learn how to solve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SyntaxError: Missing parentheses in call to \u2018print\u2019<\/h2>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python 3<\/a> is the third major update to the programming language. In recent years, it has become the preferred version of Python to use.&nbsp;<br><\/p>\n\n\n\n<p>Python 3 changed the way that print statements are written. The standalone <code>print<\/code> statement works in Python 2 and prints a statement to the console.<br><\/p>\n\n\n\n<p>In Python 3, <code>print<\/code> is a function. This means you need to surround the contents of the string you want to print to the console in parenthesis like you do with any ordinary function call.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Write a program that prints out the names of all the students in a fourth grade class whose names begin with \u201cA\u201d. To start, <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">define a list<\/a> that contains the names of the students in the class:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>students = [&quot;Alex&quot;, &quot;Alexander&quot;, &quot;Piper&quot;, &quot;Molly&quot;, &quot;Hannah&quot;]<\/pre><\/div>\n\n\n\n<p>Next, write a <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a> that iterates over all the items in this list. In the for loop, we\u2019ll use an <code>if<\/code> statement to check if each name begins with \u201cA\u201d:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for s in students:\n\t     if s.startswith(&quot;A&quot;) == True:\n\t\t          print s<\/pre><\/div>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/python-startswith-and-endswith\/\">startswith() method<\/a> checks if a string starts with a particular character or set of characters. The code checks whether each name in the \u201cstudents\u201d list begins with \u201cA\u201d.<br><\/p>\n\n\n\n<p>Add an extra print statement to the end of the code that tells us the program has finished running:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print &quot;Above are all the students whose names begin with A.&quot;<\/pre><\/div>\n\n\n\n<p>Now you\u2019re ready to run the program:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>  File &quot;main.py&quot;, line 5\n\t    print s\n      \t^\nSyntaxError: Missing parentheses in call to 'print'. Did you mean print(s)?<\/pre><\/div>\n\n\n\n<p>The code informs us that there is a syntax error in the program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>Handily, Python already offers the solution to the problem in the error message.<br><\/p>\n\n\n\n<p>This is because, in previous versions of Python 3, forgetting to include parenthesis around a print statement raised an error which only showed \u201cinvalid syntax\u201d. This message is ambiguous because invalid syntax can be caused by a number of issues. Thus, Python introduced the new \u201cmissing parenthesis\u201d error message primary to help users.<br><\/p>\n\n\n\n<p>To solve this problem, surround all of the values you want to print to the console in parenthesis:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for s in students:\n\t     if s.startswith(&quot;A&quot;) == True:\n\t\t          print(s)\n\nprint(&quot;Above are all the students whose names begin with A.&quot;)<\/pre><\/div>\n\n\n\n<p>You have enclosed the \u201cs\u201d on the <code>print<\/code> line of code in parenthesis. You have also enclosed the last string you print to the console in parenthesis. Let\u2019s see if the program works:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Alex\nAlexander\nAbove are all the students whose names begin with A.<\/pre><\/div>\n\n\n\n<p>Our code shows us that there are two students whose names begin with an A. Once our list of students has been iterated over, our program prints out a message that describes the output.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python \u201cSyntaxError: Missing parentheses in call to \u2018print\u2019\u201d error is raised when you try to print a value to the console without enclosing that value in parenthesis.<br><\/p>\n\n\n\n<p>To solve this error, add parentheses around any statements you want to print to the console. This is because, in Python 3, <code>print<\/code> is not a statement. It is a function. You must call a function using parentheses if you want to run it.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to fix this common Python error like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"In Python 3, you must enclose all print statements with parenthesis. If you try to print out a string to the console without enclosing the string in parenthesis, you\u2019ll encounter the \u201cSyntaxError: Missing parentheses in call to \u2018print\u2019\u201d error. This guide discusses what this error means and how to use the print statement in Python.&hellip;","protected":false},"author":240,"featured_media":22313,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-22312","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: Missing parentheses in call to \u2018print\u2019 | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, 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-syntaxerror-missing-parentheses-in-call-to-print-statement\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, how the error works, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\" \/>\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-08T08:34:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:59:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-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=\"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-missing-parentheses-in-call-to-print-statement\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 Solution\",\"datePublished\":\"2020-09-08T08:34:53+00:00\",\"dateModified\":\"2023-12-01T11:59:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\"},\"wordCount\":547,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\",\"name\":\"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg\",\"datePublished\":\"2020-09-08T08:34:53+00:00\",\"dateModified\":\"2023-12-01T11:59:29+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, how the error works, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#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: Missing parentheses in call to \u2018print\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 SyntaxError: Missing parentheses in call to \u2018print\u2019 | Career Karma","description":"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, 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-syntaxerror-missing-parentheses-in-call-to-print-statement\/","og_locale":"en_US","og_type":"article","og_title":"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 Solution","og_description":"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, how the error works, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-08T08:34:53+00:00","article_modified_time":"2023-12-01T11:59:29+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-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-missing-parentheses-in-call-to-print-statement\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 Solution","datePublished":"2020-09-08T08:34:53+00:00","dateModified":"2023-12-01T11:59:29+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/"},"wordCount":547,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/","url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/","name":"Python SyntaxError: Missing parentheses in call to \u2018print\u2019 | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg","datePublished":"2020-09-08T08:34:53+00:00","dateModified":"2023-12-01T11:59:29+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python SyntaxError: Missing parentheses in call to \u2018print\u2019 error, how the error works, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/ben-kolde-0Ussqg7kkQo-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-missing-parentheses-in-call-to-print-statement\/#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: Missing parentheses in call to \u2018print\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\/22312","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=22312"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22312\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22313"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}