{"id":20707,"date":"2020-08-02T22:21:17","date_gmt":"2020-08-03T05:21:17","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20707"},"modified":"2023-12-01T03:57:17","modified_gmt":"2023-12-01T11:57:17","slug":"python-remove-punctuation","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/","title":{"rendered":"Remove Punctuation Python: A Guide"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">How to Remove Punctuation from a Python String <\/h2>\n\n\n\n<p>There are a lot of cases where you may need to remove punctuation from a <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">string<\/a>. You may want to remove any punctuation from a string number that a user inserts into your program so that you can convert it into an integer. You may want to remove punctuation from a username.<br><\/p>\n\n\n\n<p>Python has you covered. There\u2019s a number of different ways you can remove punctuation from a string. In this guide, we\u2019re going to talk about how to remove punctuation from a string using the <code>join()<\/code> method and the <code>translate()<\/code> method.<br><\/p>\n\n\n\n<p>Without further ado, let&#8217;s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remove Punctuation Python: All Punctuation<\/h2>\n\n\n\n<p>We\u2019re building a payments form for a bank.<br><\/p>\n\n\n\n<p>This form should ask a user for two pieces of information: the number of the account to which they want to transfer money, and the amount they want to transfer.<br><\/p>\n\n\n\n<p>Let\u2019s start by collecting this information. We can do this using <a href=\"https:\/\/careerkarma.com\/blog\/python-input\/\">input() statements<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>account_number = input(&quot;Enter the account number to which you want to transfer money: &quot;)\nvalue = input(&quot;Enter the amount you would like to transfer: &quot;)<\/pre><\/div>\n\n\n\n<p>We want to remove any punctuation from these values. This is because we are going to convert them to floating-point numbers later on. Floating-point numbers cannot contain punctuation marks, aside from a full stop (or a \u201cperiod\u201d).<br><\/p>\n\n\n\n<p>We can remove all punctuation from these values using the <code>translate()<\/code> method. This method makes a copy of a string with a specific set of values substituted.<br><\/p>\n\n\n\n<p>To make this work, we&#8217;re going to use the string.punctuation method. This method, which is part of the \u201cstring\u201d library, gives us a list of all punctuation marks.<br><\/p>\n\n\n\n<p>Let\u2019s remove all the punctuation from both \u201caccount_number\u201d and \u2018value\u201d:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import string\n\naccount_number = input(&quot;Enter the account number to which you want to transfer money: &quot;)\nvalue = input(&quot;Enter the amount you would like to transfer: &quot;)\n\nfinal_account_number = account_number.translate(str.maketrans('', '', string.punctuation)\n)\nfinal_value = value.translate(str.maketrans('', '', string.punctuation)\n)\n\nprint(final_account_number)\nprint(final_value)<\/pre><\/div>\n\n\n\n<p>First, we import the \u201cstring\u201d library. This gives us access to a method called string.punctuation which returns a list of punctuation marks. We then collect input from the user.<br><\/p>\n\n\n\n<p>Next, we use the <code>translate()<\/code> method on both of our strings. The <code>translate()<\/code> method replaces every instance of a punctuation mark with the value \u201c\u201d in our strings. We use the <code>str.maketrans()<\/code> method to support the translation.<br><\/p>\n\n\n\n<p>Let\u2019s run our code and see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter the account number to which you want to transfer money: 22-22-2222\nEnter the amount you would like to transfer: 10.50\n22222222\n1050<\/pre><\/div>\n\n\n\n<p>We added hyphens to the account number and a full stop to the amount we wanted to transfer. In our output, you can see that these characters have been removed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remove Punctuation Python: Single Characters<\/h2>\n\n\n\n<p>Do you want to remove only a certain set of punctuation from a string? Python has your back.<br><\/p>\n\n\n\n<p>You can use the <a href=\"https:\/\/careerkarma.com\/blog\/python-join\/\">join() method<\/a> to create a copy of a string without certain values present.<br><\/p>\n\n\n\n<p>We\u2019ve been tasked to build a form that asks a bank account holder to choose a username for their online account. Question marks, full stops, colons, semi colons, and exclamation marks are not allowed. Other special characters, like an underscore, are allowed.<br><\/p>\n\n\n\n<p>We can remove these individual pieces of punctuation using the join method:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>username = input(&quot;Enter a username for your online banking account: &quot;)\n\nfinal_username = &quot;&quot;.join(u for u in username if u not in (&quot;?&quot;, &quot;.&quot;, &quot;;&quot;, &quot;:&quot;, &quot;!&quot;))\n\nprint(final_username)<\/pre><\/div>\n\n\n\n<p>First, we ask a user to choose a username. We store that value in a <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">variable<\/a> called \u201cusername\u201d. Next, we use a <code>join()<\/code> statement to create a new string without special characters. The <code>join()<\/code> statement starts with an empty string and populates it with all the characters that are not in the list we specify.<br><\/p>\n\n\n\n<p>The <code>join()<\/code> statement uses a list comprehension to loop through every character in the \u201cusername\u201d string. As long as that character is not in our list of special characters, it is added to the new string. Otherwise, the character is filtered out.<br><\/p>\n\n\n\n<p>Let\u2019s run our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter a username for your online banking account: henry_peters!\nhenry_peters<\/pre><\/div>\n\n\n\n<p>Our code removed the exclamation mark from the username. It left the underscore. While an underscore is a piece of punctuation, we did not filter it out in our list comprehension.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>There are numerous ways to remove punctuation from a string in Python. To remove all punctuation from a string, you can use the <code>translate()<\/code> method. You need to use this method with the string.punctuation method, which returns a list of punctuation to filter out from a string.<br><\/p>\n\n\n\n<p>To remove certain punctuation characters from a string, you can use a custom list comprehension. Inside your list comprehension you can specify the exact characters that you want to remove.<br>Now you\u2019re ready to remove punctuation from a <a href=\"https:\/\/careerkarma.com\/blog\/what-python-is-used-for\/\">Python<\/a> string like an expert!\n\n<\/p>\n","protected":false},"excerpt":{"rendered":"How to Remove Punctuation from a Python String There are a lot of cases where you may need to remove punctuation from a string. You may want to remove any punctuation from a string number that a user inserts into your program so that you can convert it into an integer. You may want to&hellip;","protected":false},"author":240,"featured_media":14945,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-20707","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>Remove Punctuation Python: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.\" \/>\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-remove-punctuation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remove Punctuation Python: A Guide\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\" \/>\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-03T05:21:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"574\" \/>\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-remove-punctuation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Remove Punctuation Python: A Guide\",\"datePublished\":\"2020-08-03T05:21:17+00:00\",\"dateModified\":\"2023-12-01T11:57:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\"},\"wordCount\":694,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\",\"name\":\"Remove Punctuation Python: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"datePublished\":\"2020-08-03T05:21:17+00:00\",\"dateModified\":\"2023-12-01T11:57:17+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"width\":1020,\"height\":574},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#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\":\"Remove Punctuation Python: 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":"Remove Punctuation Python: A Guide | Career Karma","description":"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.","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-remove-punctuation\/","og_locale":"en_US","og_type":"article","og_title":"Remove Punctuation Python: A Guide","og_description":"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.","og_url":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-03T05:21:17+00:00","article_modified_time":"2023-12-01T11:57:17+00:00","og_image":[{"width":1020,"height":574,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-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-remove-punctuation\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Remove Punctuation Python: A Guide","datePublished":"2020-08-03T05:21:17+00:00","dateModified":"2023-12-01T11:57:17+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/"},"wordCount":694,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/","url":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/","name":"Remove Punctuation Python: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","datePublished":"2020-08-03T05:21:17+00:00","dateModified":"2023-12-01T11:57:17+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn how to use the translate() and join() methods to execute a remove punctuation Python operation.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","width":1020,"height":574},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-remove-punctuation\/#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":"Remove Punctuation Python: 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\/20707","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=20707"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20707\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/14945"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}