{"id":15943,"date":"2020-10-19T23:21:46","date_gmt":"2020-10-20T06:21:46","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=15943"},"modified":"2023-12-01T04:03:13","modified_gmt":"2023-12-01T12:03:13","slug":"python-split","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-split\/","title":{"rendered":"How to Use Python split()"},"content":{"rendered":"\n<p><em>The Python split() method divides a string into a list. Values in the resultant list are separated based on a separator character. The separator is a whitespace by default. Common separators include white space and commas.<\/em><\/p>\n\n\n\n<p>Dividng the contents of a string into a <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">Python list<\/a> is a common operation. For instance, you may have a list of ingredients in a recipe that you want to split up into a list.<\/p>\n\n\n\n<p>That\u2019s where the Python string <em>split()<\/em> method comes in. The <em>split()<\/em> method allows you to break up a string into a list of substrings, based on the separator you specify.<\/p>\n\n\n\n<p>This tutorial will discuss, with examples, the basics of the Python <em>split()<\/em> function. By the end of reading this tutorial, you\u2019ll be a master at using the <em>split()<\/em> string function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Strings<\/h2>\n\n\n\n<p>Strings are collections of characters. They allow you to store and manipulate text-based data in your Python programs. Strings are one of Python&#8217;s sequence types. This is because they store data sequentially.<\/p>\n\n\n\n<p>Here is an example of a string in Python:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>example_string = &quot;I am an example string!&quot;<\/pre><\/div>\n\n\n\n<p>In this code, we assign the string \u201cI am an example string!\u201d to the variable <em>example_string<\/em>.<\/p>\n\n\n\n<p>We can use a number of <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">Python string methods<\/a> to break our string up into smaller components. <em>split()<\/em> is one example of a string method that allows us to divide our string. Let\u2019s explore how this method works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python String split()<\/h2>\n\n\n\n<p>The split() method splits a string into a list. A string is separated based on a separator character. By default, this character is a white space.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>string_name.split(separator, maxsplit)<\/pre><\/div>\n\n\n\n<p>split() is a built-in function. This means you do not need to import any libraries to use the split() function. Here are the main components of the <em>split()<\/em> method:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>separator<\/em> is the character the <em>split()<\/em> function will use to separate out the characters in the string. By default, any white space character will be used as a separator (space, newline). This parameter is optional.<\/li><li><em>maxsplit<\/em> defines the maximum number of splits that should occur. By default, maxsplit is equal to -1, which means an infinite number of splits will run. This parameter is also optional.<\/li><\/ul>\n\n\n\n<p>The Python <em>split()<\/em> string method is appended at the end of a string. This is common for string methods. You do not enclose the string that you want to split in the split() method like you would if you were printing a string. split() accepts two parameters:<\/p>\n\n\n\n<p>The split() method returns a copy of the string represented as a list. This is because strings are immutable, which means they cannot be changed. split() does not modify your original string.<\/p>\n\n\n\n<p>Let\u2019s walk through a few examples of the <em>split()<\/em> Python function to demonstrate how it works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Split String: Walkthrough<\/h2>\n\n\n\n<p>Suppose you have a string of ingredients for a chocolate chip muffin that you want to divide into a list. Each ingredient is separated by a comma in your string. By using the <em>split()<\/em> method, you can divide the string of ingredients up into a list.<\/p>\n\n\n\n<p>Let&#8217;s divide our list of ingredients into a string:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ingredients = &quot;2 eggs, 125ml Vegetable oil, 250ml Semi-skimmed milk, 250g golden caster sugar, 400g self-raising flour, 100g chocolate chips&quot;\n\nlist_of_ingredients = ingredients.split(&quot;,&quot;)\nprint(list_of_ingredients)<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>['2 eggs', ' 125ml Vegetable oil', ' 250ml Semi-skimmed milk', ' 250g golden caster sugar', ' 400g self-raising flour', ' 100g chocolate chips']<\/pre><\/div>\n\n\n\n<p>First, we define a variable called <em>ingredients.<\/em> This variable stores our list of ingredients. Each ingredient in our list is separated using a comma (,).<\/p>\n\n\n\n<p>Next, we use the <em>split()<\/em> method to split up our <em>ingredients<\/em> string using commas. We use the separator parameter to tell Python that our string should be separated with a comma. Then, we assign the result of the <em>split()<\/em> method to the variable <em>list_of_ingredients<\/em>.<\/p>\n\n\n\n<p>We <a href=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\">print out the variable<\/a> <em>list_of_ingredients<\/em> to the console. You can see that our code has turned our string into a list with six values: one for each ingredient.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Controlling the Number of Split Strings<\/h3>\n\n\n\n<p>We can use the <em>maxsplit<\/em> parameter to limit how many times our string should be split. Suppose we only want to split up the first three ingredients in our list. We could do so using this code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ingredients = &quot;2 eggs, 125ml Vegetable oil, 250ml Semi-skimmed milk, 250g golden caster sugar, 400g self-raising flour, 100g chocolate chips&quot;\n\nlist_of_ingredients = ingredients.split(&quot;,&quot;, 3)\nprint(list_of_ingredients)<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>['Two eggs', ' 125ml Vegetable oil', ' 250ml Semi-skimmed milk', ' 250g golden caster sugar, 400g self-raising flour, 100g chocolate chips']<\/pre><\/div>\n\n\n\n<p>We define a value for the maxsplit parameter in our code. The value of this parameter is set to 3. We have defined a comma as our separator character. We did this in our first example.<\/p>\n\n\n\n<p>The maxsplit parameter our string will be divided into a maximum of three items. Then, the rest of the string will be added to the end of our list.<\/p>\n\n\n\n<p>Our list now only has four items. The first three items are individual ingredients, and the last item in our list contains the rest of the items from our original string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python string <em>split()<\/em> method allows you to divide a string into a list at a specified separator. For instance, you could use <em>split()<\/em> to divide a string by commas (,), or by the letter <em>J<\/em>.<\/p>\n\n\n\n<p>This tutorial discussed the basics of strings in Python and how to use the string <em>split()<\/em> method. Now you\u2019re ready to start using the <em>split()<\/em> method like a <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">Python professional<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"The Python split() method divides a string into a list. Values in the resultant list are separated based on a separator character. The separator is a whitespace by default. Common separators include white space and commas. Dividng the contents of a string into a Python list is a common operation. For instance, you may have&hellip;","protected":false},"author":240,"featured_media":15944,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-15943","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>How to Use Python split() | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.\" \/>\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-split\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Python split()\" \/>\n<meta property=\"og:description\" content=\"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-split\/\" \/>\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-20T06:21:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:03:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"681\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Use Python split()\",\"datePublished\":\"2020-10-20T06:21:46+00:00\",\"dateModified\":\"2023-12-01T12:03:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/\"},\"wordCount\":830,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-split\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-split\/\",\"name\":\"How to Use Python split() | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg\",\"datePublished\":\"2020-10-20T06:21:46+00:00\",\"dateModified\":\"2023-12-01T12:03:13+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-split\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg\",\"width\":1020,\"height\":681},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-split\/#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\":\"How to Use Python split()\"}]},{\"@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":"How to Use Python split() | Career Karma","description":"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.","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-split\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Python split()","og_description":"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.","og_url":"https:\/\/careerkarma.com\/blog\/python-split\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-20T06:21:46+00:00","article_modified_time":"2023-12-01T12:03:13+00:00","og_image":[{"width":1020,"height":681,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-split\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Use Python split()","datePublished":"2020-10-20T06:21:46+00:00","dateModified":"2023-12-01T12:03:13+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/"},"wordCount":830,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-split\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-split\/","url":"https:\/\/careerkarma.com\/blog\/python-split\/","name":"How to Use Python split() | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg","datePublished":"2020-10-20T06:21:46+00:00","dateModified":"2023-12-01T12:03:13+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python split() method allows you to split a string into a list. On Career Karma, learn how to use the Python split() method.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-split\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-split\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-split\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/two-women-sitting-in-front-of-white-table-1181610.jpg","width":1020,"height":681},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-split\/#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":"How to Use Python split()"}]},{"@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\/15943","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=15943"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/15943\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/15944"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=15943"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=15943"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=15943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}