{"id":22275,"date":"2021-11-16T11:15:29","date_gmt":"2021-11-16T05:45:29","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=22275"},"modified":"2023-04-18T17:27:10","modified_gmt":"2023-04-18T11:57:10","slug":"python-split-multiple-delimiters-example-code","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/","title":{"rendered":"Python split multiple delimiters | Example code"},"content":{"rendered":"\n<p>Use the built-in <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-split-function-python-split-string\/\">split method<\/a> to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import re\nre.split('; |, ',str)<\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Example Split string with multiple delimiters in Python<\/strong><\/h2>\n\n\n\n<p>Simple example code. Where delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions in plain text or other data streams. An example of a delimiter is the comma character.<\/p>\n\n\n\n<p>You have to <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-import-module-from-path-example-code\/\">import <\/a>the re <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-modules-import-custom-builtin-package\/\">module <\/a>for this example.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import re\n\ns = 'Beautiful, is; better*than\\nugly'\n\nres = re.split('; |, |\\*|\\n', s)\n\nprint(res)<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"371\" height=\"146\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg?resize=371%2C146&#038;ssl=1\" alt=\"Python split multiple delimiters\" class=\"wp-image-22309\"\/><\/figure><\/div>\n\n\n<p><strong>Another example <\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import re\ntext = 'The quick brown\\nfox jumps*over the lazy dog.'\nprint(re.split('; |, |\\*|\\n',text))<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>: [&#8216;The quick brown&#8217;, &#8216;fox jumps&#8217;, &#8216;over the lazy dog.&#8217;]<\/p>\n\n\n\n<p>Here is an one more example code snippet:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import re\r\n\r\nstring = \"apple,banana;cherry grape orange\"\r\n\r\n# Split the string using commas, semicolons, and spaces as delimiters\r\nresult = re.split(r'&#91;,;\\s]+', string)\r\n\r\nprint(result)  # Output: &#91;'apple', 'banana', 'cherry', 'grape', 'orange']\r<\/code><\/pre>\n\n\n\n<p>In the above example, the <code>re.split()<\/code> function splits the string <code>string<\/code> using the regular expression pattern <code>[,;\\s]+<\/code>, which matches one or more occurrences of commas, semicolons, or whitespace characters.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Do comment if you have any doubts or suggestions on this Python split topic.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note:<\/strong> IDE:&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.jetbrains.com\/pycharm\/\" target=\"_blank\">PyCharm<\/a>&nbsp;2021.3.3 (Community Edition)<\/p><p>Windows 10<\/p><p><strong>Python 3.10.1<\/strong><\/p><p>All<strong>&nbsp;Python Examples&nbsp;are in&nbsp;Python&nbsp;3<\/strong>, so Maybe its different from python 2 or upgraded versions.<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method. Example Split string with multiple delimiters in Python Simple example code. Where delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions in plain text&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Python split multiple delimiters | Example code<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[30],"tags":[136,256],"post_series":[],"class_list":["post-22275","post","type-post","status-publish","format-standard","hentry","category-python","tag-python-code","tag-python-split"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python split multiple delimiters | Example code<\/title>\n<meta name=\"description\" content=\"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a 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:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python split multiple delimiters | Example code\" \/>\n<meta property=\"og:description\" content=\"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-16T05:45:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-18T11:57:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg\" \/>\n<meta name=\"author\" content=\"Rohit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rohit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\",\"name\":\"Python split multiple delimiters | Example code\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg\",\"datePublished\":\"2021-11-16T05:45:29+00:00\",\"dateModified\":\"2023-04-18T11:57:10+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method.\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg?fit=371%2C146&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg?fit=371%2C146&ssl=1\",\"width\":371,\"height\":146},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python split multiple delimiters | Example code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\",\"url\":\"https:\/\/tutorial.eyehunts.com\/\",\"name\":\"Tutorial\",\"description\":\"By EyeHunts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\",\"name\":\"Rohit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"contentUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"caption\":\"Rohit\"},\"description\":\"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.\",\"url\":\"https:\/\/tutorial.eyehunts.com\/author\/rohit\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python split multiple delimiters | Example code","description":"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a 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:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/","og_locale":"en_US","og_type":"article","og_title":"Python split multiple delimiters | Example code","og_description":"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method.","og_url":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/","og_site_name":"Tutorial","article_published_time":"2021-11-16T05:45:29+00:00","article_modified_time":"2023-04-18T11:57:10+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/","url":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/","name":"Python split multiple delimiters | Example code","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg","datePublished":"2021-11-16T05:45:29+00:00","dateModified":"2023-04-18T11:57:10+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"Use the built-in split method to split strings with multiple delimiters in Python. Just pass multiple delimiters with space into a method.","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg?fit=371%2C146&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-multiple-delimiters.jpg?fit=371%2C146&ssl=1","width":371,"height":146},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-split-multiple-delimiters-example-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"Python split multiple delimiters | Example code"}]},{"@type":"WebSite","@id":"https:\/\/tutorial.eyehunts.com\/#website","url":"https:\/\/tutorial.eyehunts.com\/","name":"Tutorial","description":"By EyeHunts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1","name":"Rohit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/","url":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","contentUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","caption":"Rohit"},"description":"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.","url":"https:\/\/tutorial.eyehunts.com\/author\/rohit\/"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":41395,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-extract-string-between-delimiters\/","url_meta":{"origin":22275,"position":0},"title":"Python extract string between delimiters","author":"Rohit","date":"July 28, 2023","format":false,"excerpt":"To extract a string between delimiters in Python, you can use regular expressions (regex). The re module in Python provides functions to work with regular expressions. You can use regex import re s = re.findall('\\[(.*?)\\]', str) For example, in the string \"Hello [World]! How [are] you doing?\", if the delimiters\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/07\/Python-extract-string-between-delimiters.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":32397,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-prompt-multiple-input\/","url_meta":{"origin":22275,"position":1},"title":"JavaScript prompt multiple input","author":"Rohit","date":"August 22, 2022","format":false,"excerpt":"JavaScript prompt multiple input is not possible in native browser behavior. You need to use a custom library for creating modal elements. For example, you can use jQuery UI. Another way to do it would be to have a common separator that you split on. For instance, the delimiter ~,\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/08\/JavaScript-prompt-multiple-input.gif?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/08\/JavaScript-prompt-multiple-input.gif?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/08\/JavaScript-prompt-multiple-input.gif?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":22273,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-split-string-by-character-example-code\/","url_meta":{"origin":22275,"position":2},"title":"Python split string by character | Example code","author":"Rohit","date":"November 15, 2021","format":false,"excerpt":"Using List Comprehension or Typecasting to list will split string by character in Python. Both methods will convert a string into a char of a list. Simply take the string and pass it to the list(). Note: You can't use the split method for it, because this method needed a\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python split string by character","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-split-string-by-character.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23058,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-take-two-inputs-in-one-line-in-python-3-example-code\/","url_meta":{"origin":22275,"position":3},"title":"How to take two inputs in one line in Python 3 | Example code","author":"Rohit","date":"December 9, 2021","format":false,"excerpt":"One solution is using 2 inputs to take two inputs in one line in Python 3. x, y = input(), input() You can also use the split() method. A split() method uses any whitespace characters as a delimiter by default. x, y = input().split() Example take two inputs in one\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to take two inputs in one line in Python 3","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/How-to-take-two-inputs-in-one-line-in-Python-3.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23041,"url":"https:\/\/tutorial.eyehunts.com\/python\/input-split-python-example-code\/","url_meta":{"origin":22275,"position":4},"title":"Input split Python | Example code","author":"Rohit","date":"December 9, 2021","format":false,"excerpt":"If you want to split input by space or any other splitter then just use the split method with the input function in Python. split slits a string by a space by default, but you can change this behavior: input().split(separator, maxsplit) separator (optional): The delimiter on which the string will\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Input split Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Input-split-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":2462,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-split-function-python-split-string\/","url_meta":{"origin":22275,"position":5},"title":"Python Split() Function | Split String Example","author":"Rohit","date":"September 13, 2018","format":false,"excerpt":"The Python split() function breaks up a string at the specified separator (space, comma, etc) and returns a list of Strings. You can do it with use the python inbuilt split function. In this tutorial, you will learn, how to split a string by space, character, delimiter, comma into a\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python Split() Function | Split String Example in python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2018\/09\/Python-Split-Function-Split-String-Example-in-python.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2018\/09\/Python-Split-Function-Split-String-Example-in-python.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2018\/09\/Python-Split-Function-Split-String-Example-in-python.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2018\/09\/Python-Split-Function-Split-String-Example-in-python.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2018\/09\/Python-Split-Function-Split-String-Example-in-python.png?resize=1050%2C600&ssl=1 3x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/22275","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/comments?post=22275"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/22275\/revisions"}],"predecessor-version":[{"id":38447,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/22275\/revisions\/38447"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=22275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=22275"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=22275"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=22275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}