{"id":23142,"date":"2021-12-11T11:19:25","date_gmt":"2021-12-11T05:49:25","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=23142"},"modified":"2023-08-03T17:58:29","modified_gmt":"2023-08-03T12:28:29","slug":"python-input-list-of-strings-example-code","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/","title":{"rendered":"Python input list of strings | Example code"},"content":{"rendered":"\n<p>Use the <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-split-function-python-split-string\/\">split() function<\/a> on input string to get an input list of strings in Python. Where the split function splits a string into a list of words.<\/p>\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 take an input list of strings in Python<\/strong><\/h2>\n\n\n\n<p>A simple example code accepts the list of strings from a user in the format of a string separated by space.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>input_string = input(\"Enter name separated by space: \")\n\n# Split string into words\nlst = input_string.split(\" \")\n\nprint(lst)\n<\/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=\"547\" height=\"132\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg?resize=547%2C132&#038;ssl=1\" alt=\"Python input list of strings\" class=\"wp-image-23146\"\/><\/figure><\/div>\n\n\n<p><strong>Another example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Taking input from the user for a list of strings\r\ndef get_input_list_of_strings():\r\n    # Get the number of strings the user wants to input\r\n    num_strings = int(input(\"Enter the number of strings: \"))\r\n\r\n    # Initialize an empty list to store the strings\r\n    string_list = &#91;]\r\n\r\n    # Loop to take input for each string and add it to the list\r\n    for i in range(num_strings):\r\n        string = input(f\"Enter string {i+1}: \")\r\n        string_list.append(string)\r\n\r\n    return string_list\r\n\r\n# Usage example\r\nif __name__ == \"__main__\":\r\n    input_list = get_input_list_of_strings()\r\n    print(\"The list of strings you entered:\", input_list)\r<\/code><\/pre>\n\n\n\n<p>When you run this code, it will prompt you to enter the number of strings you want to input. Then, it will ask you to enter each string one by one. After you&#8217;ve entered all the strings, it will print the list of strings you provided.<\/p>\n\n\n\n<p>You can further modify and manipulate the <code>input_list<\/code> as per your requirements in the rest of your Python program.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Comment if you have any doubts or suggestions on this Python input list 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 split() function on input string to get an input list of strings in Python. Where the split function splits a string into a list of words. Example take an input list of strings in Python A simple example code accepts the list of strings from a user in the format of a string&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Python input list of strings | 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":[263,83,98],"post_series":[],"class_list":["post-23142","post","type-post","status-publish","format-standard","hentry","category-python","tag-python-input","tag-python-list","tag-python-string"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python input list of strings | Example code<\/title>\n<meta name=\"description\" content=\"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.\" \/>\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-input-list-of-strings-example-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python input list of strings | Example code\" \/>\n<meta property=\"og:description\" content=\"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-11T05:49:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-03T12:28:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/\",\"name\":\"Python input list of strings | Example code\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg\",\"datePublished\":\"2021-12-11T05:49:25+00:00\",\"dateModified\":\"2023-08-03T12:28:29+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg?fit=547%2C132&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg?fit=547%2C132&ssl=1\",\"width\":547,\"height\":132},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python input list of strings | 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 input list of strings | Example code","description":"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.","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-input-list-of-strings-example-code\/","og_locale":"en_US","og_type":"article","og_title":"Python input list of strings | Example code","og_description":"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.","og_url":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/","og_site_name":"Tutorial","article_published_time":"2021-12-11T05:49:25+00:00","article_modified_time":"2023-08-03T12:28:29+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/","url":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/","name":"Python input list of strings | Example code","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg","datePublished":"2021-12-11T05:49:25+00:00","dateModified":"2023-08-03T12:28:29+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"Use split() function on input string to get input list of strings in Python. Where the split function splits a string into a list of words.","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg?fit=547%2C132&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-input-list-of-strings.jpg?fit=547%2C132&ssl=1","width":547,"height":132},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-input-list-of-strings-example-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"Python input list of strings | 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":23070,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-take-list-input-in-python-in-single-line-example-code\/","url_meta":{"origin":23142,"position":0},"title":"How to take list input in Python in single line | Example code","author":"Rohit","date":"December 11, 2021","format":false,"excerpt":"To take list input in Python in a single line use input() function and split() function. Where the input() function accepts a string, integer, and character input from a user, and the split() function splits an input string by space. # Method 1: Using list comprehension input_list = [int(x) for\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to take list input in Python in single line","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/How-to-take-list-input-in-Python-in-single-line.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":22584,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-take-space-separated-integer-input-in-python-3-example-code\/","url_meta":{"origin":23142,"position":1},"title":"How to take space-separated integer input in Python 3 | Example code","author":"Rohit","date":"November 22, 2021","format":false,"excerpt":"Use input(), map(), and split() functions to take space-separated integer input in Python 3. You have to use list() to convert the map to a list. list(map(int,input().split())) Where: input() accepts a string from STDIN. split() splits the string about the whitespace character and returns a list of strings. map() passes\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to take space-separated integer input in Python 3","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/How-to-take-space-separated-integer-input-in-Python-3.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23443,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-sum-list-of-strings-example-code\/","url_meta":{"origin":23142,"position":2},"title":"Python sum list of strings | Example code","author":"Rohit","date":"December 17, 2021","format":false,"excerpt":"Use type() and isdigit() functions in Python to achieve a sum list of strings in Python. This function will check If the element is int, then add it to the total by checking two conditions. Example sum list of strings in Python A simple example code adds all numbers from\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python sum list of strings","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-sum-list-of-strings.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23060,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-take-n-inputs-in-one-line-in-python-example-code\/","url_meta":{"origin":23142,"position":3},"title":"How to take n inputs in one line in Python | Example code","author":"Rohit","date":"December 13, 2021","format":false,"excerpt":"You can use a list comprehension to take n inputs in one line in Python. The input string is split into n parts, then the list comp creates a new list by applying int() to each of them. Example take n inputs in one line in Python Simple example code\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to take n inputs in one line in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/How-to-take-n-inputs-in-one-line-in-Python.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":23142,"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":23066,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-take-the-list-as-input-in-python-example-code\/","url_meta":{"origin":23142,"position":5},"title":"How to take the list as input in Python | Example code","author":"Rohit","date":"December 11, 2021","format":false,"excerpt":"Use an input() function with a split() function to take the list as input in Python. Using a split() function will split an input string by space. Example take the list as input in Python Simple example code input() function to accept the list elements from a user in the\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to take the list as input in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/How-to-take-the-list-as-input-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23142","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=23142"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23142\/revisions"}],"predecessor-version":[{"id":41525,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23142\/revisions\/41525"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=23142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=23142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=23142"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=23142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}