{"id":24479,"date":"2020-10-19T10:57:59","date_gmt":"2020-10-19T17:57:59","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24479"},"modified":"2021-01-04T04:59:54","modified_gmt":"2021-01-04T12:59:54","slug":"python-syntaxerror-invalid-syntax","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/","title":{"rendered":"Python SyntaxError: Invalid Syntax"},"content":{"rendered":"\n<p>Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others. We can think of them like grammar or punctuation in spoken languages. The question mark in English (?) differs from the question mark in Greek (;).<br><\/p>\n\n\n\n<p>You can deduce that when you get a syntax error, you are writing the programming language incorrectly. You may be accidentally omitting or using syntax from a different language, which is something that often occurs as developers grow their tech stack.<br><\/p>\n\n\n\n<p>In this article we\u2019ll dive into common Python SyntaxErrors, provide examples, and show you how to fix them.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common SyntaxErrors and How to Fix Them<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Dictionaries&nbsp;<\/h3>\n\n\n\n<p>Try to figure out why the syntax error was thrown in the below code.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>student_gpas = {\n    'Mary': 3.0,\n    'Tim': 2.5\n    'John': 4.0\n}\nprint(f'Mary has a {student_gpas[&quot;Mary&quot;]} GPA.')\n \n# returns SyntaxError: invalid syntax<\/pre><\/div>\n\n\n\n<p>If you say \u201cmissing comma after the key value pair of 2.5\u201d, you are correct. Dictionaries, like objects in JavaScript, need a comma after each key value pair, with the exception of the last key value pair.<br><\/p>\n\n\n\n<p>The solution to the above error is below.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>student_gpas = {\n    'Mary': 3.0,\n    'Tim': 2.5,\n    'John': 4.0\n}\nprint(f'Mary has a {student_gpas[&quot;Mary&quot;]} GPA.')\n \n# returns Mary has a 3.0 GPA.<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Quotes<\/h3>\n\n\n\n<p>Try to figure out why the syntax error in the below code was thrown.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print('Mary's teacher stated that she has a 3.0 GPA.')\n \n# returns SyntaxError: invalid syntax<\/pre><\/div>\n\n\n\n<p>If you said something along the lines of \u201cuse of the same type of quotes within the quote\u201d, you would be correct. There are several ways to avoid a syntax error when using quotes in Python.<br><\/p>\n\n\n\n<p>1. Using double quotation marks<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Mary's teacher stated that she has a 3.0 GPA.&quot;)<\/pre><\/div>\n\n\n\n<p>2. Using a backslash <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print('Mary\\'s teacher stated that she has a 3.0 GPA.')<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Using New Syntax with Old Versions of Python<\/h3>\n\n\n\n<p>Make sure the syntax you are using is compatible with the version of Python you are using. For example, any Python version prior to 3.6 will not be able to recognize f-strings and will throw an invalid syntax error if you run the syntax. Developers can either update the version, or use compatible syntax for the set version.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>student_gpas = {\n    'Mary': 3.0,\n    'Tim': 2.5,\n    'John': 4.0\n}\nprint(f'Mary has a {student_gpas[&quot;Mary&quot;]} GPA.')\n \n# returns SyntaxError: invalid syntax on older versions of Python<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Using Python Keywords Inappropriately&nbsp;<\/h3>\n\n\n\n<p>The best way to know if you are using a Python keyword inappropriately is to know what those keywords are and what they are used for in Python. For an in depth overview on some Python keywords, check out the articles <a href=\"https:\/\/careerkarma.com\/blog\/python-not\/\">How to Use the Python not Keyword<\/a>, <a href=\"https:\/\/careerkarma.com\/blog\/python-yield\/\">The Python Yield Keyword: A Guide<\/a>, and <a href=\"https:\/\/careerkarma.com\/blog\/python-positional-argument-follows-keyword-argument\/\">Python positional argument follows keyword argument Solution<\/a>.<br><\/p>\n\n\n\n<p>Try to figure out why the syntax error in the below code was thrown.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>continue = True\n \nprint(continue)\n \n# returns SyntaxError: invalid syntax<\/pre><\/div>\n\n\n\n<p>If you answer \u201cbecause we are setting a value to a keyword\u201d, you are correct. Continue is a keyword in Python used to continue to the next iteration of a loop. A fix to the above would be to set the boolean True, to a variable name that is not a Python keyword.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>on = True\n \nprint(on)\n \n# returns True<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others. We can think of them like grammar or punctuation in spoken languages. The question mark in English (?) differs from the question mark in Greek (;). You can deduce that when you&hellip;","protected":false},"author":91,"featured_media":24480,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-24479","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: Invalid Syntax | Career Karma<\/title>\n<meta name=\"description\" content=\"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.\" \/>\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-invalid-syntax\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python SyntaxError: Invalid Syntax\" \/>\n<meta property=\"og:description\" content=\"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\" \/>\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-19T17:57:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-04T12:59:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-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=\"Kelly M.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/misskellymore\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kelly M.\" \/>\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-invalid-syntax\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\"},\"author\":{\"name\":\"Kelly M.\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"headline\":\"Python SyntaxError: Invalid Syntax\",\"datePublished\":\"2020-10-19T17:57:59+00:00\",\"dateModified\":\"2021-01-04T12:59:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\"},\"wordCount\":435,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\",\"name\":\"Python SyntaxError: Invalid Syntax | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg\",\"datePublished\":\"2020-10-19T17:57:59+00:00\",\"dateModified\":\"2021-01-04T12:59:54+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"description\":\"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"question-mark\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#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: Invalid Syntax\"}]},{\"@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\/1cc6a89c78a56b632b6032b3b040c4fb\",\"name\":\"Kelly M.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg\",\"caption\":\"Kelly M.\"},\"description\":\"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/kemore\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/misskellymore\"],\"url\":\"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python SyntaxError: Invalid Syntax | Career Karma","description":"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.","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-invalid-syntax\/","og_locale":"en_US","og_type":"article","og_title":"Python SyntaxError: Invalid Syntax","og_description":"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.","og_url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-19T17:57:59+00:00","article_modified_time":"2021-01-04T12:59:54+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg","type":"image\/jpeg"}],"author":"Kelly M.","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/misskellymore","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kelly M.","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/"},"author":{"name":"Kelly M.","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"headline":"Python SyntaxError: Invalid Syntax","datePublished":"2020-10-19T17:57:59+00:00","dateModified":"2021-01-04T12:59:54+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/"},"wordCount":435,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/","url":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/","name":"Python SyntaxError: Invalid Syntax | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg","datePublished":"2020-10-19T17:57:59+00:00","dateModified":"2021-01-04T12:59:54+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"description":"Syntax are rules that dictate how programming languages should be written. Each language has its own set of syntax rules different from others.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/emily-morter-8xAA0f9yQnE-unsplash.jpg","width":1020,"height":680,"caption":"question-mark"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-syntaxerror-invalid-syntax\/#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: Invalid Syntax"}]},{"@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\/1cc6a89c78a56b632b6032b3b040c4fb","name":"Kelly M.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","caption":"Kelly M."},"description":"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.","sameAs":["https:\/\/www.linkedin.com\/in\/kemore\/","https:\/\/x.com\/https:\/\/twitter.com\/misskellymore"],"url":"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24479","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\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=24479"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24479\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/24480"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}