{"id":32425,"date":"2023-12-26T02:23:01","date_gmt":"2023-12-26T02:23:01","guid":{"rendered":"https:\/\/hatchjs.com\/?p=32425"},"modified":"2024-01-05T09:18:22","modified_gmt":"2024-01-05T09:18:22","slug":"attributeerror-list-object-has-no-attribute-split-2","status":"publish","type":"post","link":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/","title":{"rendered":"AttributeError: list object has no attribute &#8216;split&#8217;"},"content":{"rendered":"<p><b>AttributeError: &#8216;list&#8217; object has no attribute &#8216;split&#8217;<\/b><\/p>\n<p>This error occurs when you try to call the `split()` method on a list object. The `split()` method is used to split a string into a list of substrings, but it cannot be used on a list object.<\/p>\n<p>To fix this error, you can either convert the list object to a string, or you can use the `list()` function to create a new list from the substrings of the original list.<\/p>\n<p>Here are some examples of how to fix this error:<\/p>\n<p>python<br \/>\nConvert the list object to a string<br \/>\nlist_object = [&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;]<br \/>\nstring_object = &#8220;&#8221;.join(list_object)<\/p>\n<p>Create a new list from the substrings of the original list<br \/>\nlist_object = list(string_object.split())<\/p>\n<p>By following these steps, you can easily fix the `AttributeError: &#8216;list&#8217; object has no attribute &#8216;split&#8217;` error.<\/p>\n<table>\n<tr>\n<th>Attribute<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<tr>\n<td>split()<\/td>\n<td>Returns a list of strings, each of which is a substring of the original string, after splitting it at the specified separator.<\/td>\n<td>\n>>> s = &#8220;This is a string&#8221;<br \/>\n>>> s.split(&#8221; &#8220;)<br \/>\n[&#8216;This&#8217;, &#8216;is&#8217;, &#8216;a&#8217;, &#8216;string&#8217;]\n<\/td>\n<\/tr>\n<tr>\n<td>AttributeError<\/td>\n<td>Raised when an attribute is not found on an object.<\/td>\n<td>\n>>> s = &#8220;This is a string&#8221;<br \/>\n>>> s.split()<br \/>\nTraceback (most recent call last):<br \/>\n  File &#8220;<stdin>&#8220;, line 1, in <module><br \/>\nAttributeError: &#8216;str&#8217; object has no attribute &#8216;split&#8217;\n<\/td>\n<\/tr>\n<\/table>\n<p>What is the AttributeError: list object has no attribute &#8216;split&#8217;?<\/p>\n<p>The AttributeError: list object has no attribute &#8216;split&#8217; error occurs when you try to call the `split()` method on a list object that does not have a `split()` method. This can happen for a few reasons:<\/p>\n<ul>\n<li>The list object may not be a list at all. For example, if you try to split a string, you will get this error.<\/li>\n<li>The list object may have been created with the `list()` constructor, but it may not actually be a list. For example, if you create a list with the `tuple()` constructor, it will not have a `split()` method.<\/li>\n<li>The list object may have been created with the `array()` constructor, but it will not have a `split()` method.<\/li>\n<\/ul>\n<p>To fix this error, you need to make sure that the object you are trying to split is actually a list. You can do this by using the `isinstance()` function. For example:<\/p>\n<p>python<br \/>\nif isinstance(obj, list):<br \/>\n  The object is a list, so you can call the split() method on it.<br \/>\n  obj.split()<br \/>\nelse:<br \/>\n  The object is not a list, so you cannot call the split() method on it.<br \/>\n  raise AttributeError(&#8220;list object has no attribute &#8216;split'&#8221;)<\/p>\n<p>What causes the AttributeError: list object has no attribute &#8216;split&#8217;?<\/p>\n<p>The AttributeError: list object has no attribute &#8216;split&#8217; error can be caused by a few different things:<\/p>\n<ul>\n<li><b>The object is not a list.<\/b> If you try to call the `split()` method on an object that is not a list, you will get this error. For example, if you try to split a string, you will get this error.<\/li>\n<li><b>The object has been created with the `list()` constructor, but it does not actually have a `split()` method.<\/b> This can happen if you create a list with the `tuple()` constructor or the `array()` constructor.<\/li>\n<li><b>The object has been created with the `list()` constructor, but the `split()` method has been removed from the object.<\/b> This can happen if you have modified the object in a way that removed the `split()` method.<\/li>\n<\/ul>\n<p>To fix this error, you need to make sure that the object you are trying to split is actually a list and that it has a `split()` method. You can do this by using the `isinstance()` function and the `hasattr()` function. For example:<\/p>\n<p>python<br \/>\nif isinstance(obj, list) and hasattr(obj, &#8216;split&#8217;):<br \/>\n  The object is a list and it has a split() method, so you can call the split() method on it.<br \/>\n  obj.split()<br \/>\nelse:<br \/>\n  The object is not a list or it does not have a split() method, so you cannot call the split() method on it.<br \/>\n  raise AttributeError(&#8220;list object has no attribute &#8216;split'&#8221;)<\/p>\n<\/p>\n<h2>3. How to fix the AttributeError: list object has no attribute &#8216;split&#8217;?<\/h2>\n<p>The AttributeError: list object has no attribute &#8216;split&#8217; occurs when you try to call the `split()` method on a list object. This error occurs because the `split()` method is not defined for list objects.<\/p>\n<p>To fix this error, you can either use the `str()` function to convert the list object to a string, or you can use the `join()` method to join the elements of the list object into a single string.<\/p>\n<p>**Using the `str()` function**<\/p>\n<p>To use the `str()` function to fix the error, simply cast the list object to a string using the `str()` function. For example:<\/p>\n<p>>>> list_of_strings = [&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;]<br \/>\n>>> str_of_strings = str(list_of_strings)<br \/>\n>>> print(str_of_strings)<br \/>\na,b,c<\/p>\n<p>**Using the `join()` method**<\/p>\n<p>To use the `join()` method to fix the error, simply pass the list object as an argument to the `join()` method. For example:<\/p>\n<p>>>> list_of_strings = [&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;]<br \/>\n>>> str_of_strings = &#8220;,&#8221;.join(list_of_strings)<br \/>\n>>> print(str_of_strings)<br \/>\na,b,c<\/p>\n<p>The AttributeError: list object has no attribute &#8216;split&#8217; can be easily fixed by using either the `str()` function or the `join()` method.<\/p>\n<h2>4. Examples of the AttributeError: list object has no attribute &#8216;split&#8217;<\/h2>\n<p>The following are some examples of the AttributeError: list object has no attribute &#8216;split&#8217;:<\/p>\n<p>>>> list_of_strings = [&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;]<br \/>\n>>> list_of_strings.split()<br \/>\nTraceback (most recent call last):<br \/>\n  File &#8220;<stdin>&#8220;, line 1, in <module><br \/>\nAttributeError: &#8216;list&#8217; object has no attribute &#8216;split&#8217;<\/p>\n<p>>>> str_of_strings = &#8220;a,b,c&#8221;<br \/>\n>>> str_of_strings.split()<br \/>\n[&#8216;a&#8217;, &#8216;b&#8217;, &#8216;c&#8217;]<\/p>\n<p>>>> list_of_numbers = [1, 2, 3]<br \/>\n>>> list_of_numbers.split()<br \/>\nTraceback (most recent call last):<br \/>\n  File &#8220;<stdin>&#8220;, line 1, in <module><br \/>\nAttributeError: &#8216;list&#8217; object has no attribute &#8216;split&#8217;<\/p>\n<p>The AttributeError: list object has no attribute &#8216;split&#8217; can occur when you try to call the `split()` method on a list object. This error can be fixed by either using the `str()` function or the `join()` method.<\/p>\n<p><b><b>Q:<\/b> What does the AttributeError &#8220;list object has no attribute &#8216;split'&#8221; mean?<\/b><\/p>\n<p><b>A:<\/b> This error occurs when you try to call the `split()` method on a list object, but the list object does not have a `split()` method. This can happen if you are trying to use a method that is only available for strings on a list object, or if you have misspelled the `split()` method name.<\/p>\n<p><b><b>Q:<\/b> How can I fix the AttributeError &#8220;list object has no attribute &#8216;split'&#8221;?<\/b><\/p>\n<p><b>A:<\/b> There are a few ways to fix this error.<\/p>\n<ul>\n<li><b>Make sure that you are calling the `split()` method on a string, not a list.<\/b> If you are trying to split a string, you can use the following syntax:<\/li>\n<\/ul>\n<p>string_variable.split()<\/p>\n<ul>\n<li><b>Make sure that you have spelled the `split()` method name correctly.<\/b> The `split()` method is a built-in method for strings, so it should not be capitalized.<\/li>\n<\/ul>\n<ul>\n<li><b>Use the `list()` function to convert the string to a list before calling the `split()` method.<\/b> You can do this with the following syntax:<\/li>\n<\/ul>\n<p>list_variable = list(string_variable)<br \/>\nlist_variable.split()<\/p>\n<p><b><b>Q:<\/b> What are some common causes of the AttributeError &#8220;list object has no attribute &#8216;split'&#8221;?<\/b><\/p>\n<p><b>A:<\/b> The most common cause of this error is trying to call the `split()` method on a list object that does not have a `split()` method. This can happen if you are trying to use a method that is only available for strings on a list object, or if you have misspelled the `split()` method name.<\/p>\n<p>Another common cause of this error is trying to call the `split()` method on a string that is not a valid string. This can happen if you have accidentally passed a number or a boolean value to the `split()` method.<\/p>\n<p>Finally, this error can also occur if you are trying to call the `split()` method on a string that is empty.<\/p>\n<p><b><b>Q:<\/b> What can I do to prevent the AttributeError &#8220;list object has no attribute &#8216;split'&#8221;?<\/b><\/p>\n<p><b>A:<\/b> There are a few things you can do to prevent this error.<\/p>\n<ul>\n<li><b>Be careful to only call the `split()` method on strings, not lists.<\/b> If you are not sure whether a variable is a string or a list, you can use the `type()` function to check its type.<\/li>\n<li><b>Make sure that you have spelled the `split()` method name correctly.<\/b> The `split()` method is a built-in method for strings, so it should not be capitalized.<\/li>\n<li><b>Use the `list()` function to convert the string to a list before calling the `split()` method.<\/b> This will ensure that the string is always a valid string, and it will also prevent you from accidentally misspelling the `split()` method name.<\/li>\n<\/ul>\n<p><b><b>Q:<\/b> What other resources are available on this topic?<\/b><\/p>\n<p><b>A:<\/b> There are a number of resources available on the topic of the AttributeError &#8220;list object has no attribute &#8216;split'&#8221;. Here are a few of them:<\/p>\n<ul>\n<li>[Stack Overflow: &#8220;list object has no attribute &#8216;split'&#8221;](https:\/\/stackoverflow.com\/questions\/2249176\/list-object-has-no-attribute-split)<\/li>\n<li>[Python Documentation: &#8220;str.split()&#8221;](https:\/\/docs.python.org\/3\/library\/stdtypes.htmlstr.split)<\/li>\n<li>[TutorialsPoint: &#8220;Python split() Method&#8221;](https:\/\/www.tutorialspoint.com\/python\/string_split.htm)\n<\/p>\n<p> the AttributeError: list object has no attribute &#8216;split&#8217; occurs when you try to call the split() method on a list object. This is because the split() method is not defined for list objects. To fix this error, you can either convert the list object to a string object or use the join() method to join the elements of the list into a string.<\/li>\n<\/ul>\n<p>Here are some key takeaways from this article:<\/p>\n<ul>\n<li>The split() method is used to split a string into a list of substrings.<\/li>\n<li>The join() method is used to join a list of strings into a single string.<\/li>\n<li>The AttributeError: list object has no attribute &#8216;split&#8217; occurs when you try to call the split() method on a list object.<\/li>\n<li>To fix this error, you can either convert the list object to a string object or use the join() method to join the elements of the list into a string.\n<\/p>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>AttributeError: &#8216;list&#8217; object has no attribute &#8216;split&#8217; This error occurs when you try to call the `split()` method on a list object. The `split()` method is used to split a string into a list of substrings, but it cannot be used on a list object. To fix this error, you can either convert the list&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-32425","post","type-post","status-publish","format-standard","hentry","category-error-fixing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AttributeError: list object has no attribute &#039;split&#039;<\/title>\n<meta name=\"description\" content=\"AttributeError: &#039;list&#039; object has no attribute &#039;split&#039; * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AttributeError: list object has no attribute &#039;split&#039;\" \/>\n<meta property=\"og:description\" content=\"AttributeError: &#039;list&#039; object has no attribute &#039;split&#039; * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/\" \/>\n<meta property=\"og:site_name\" content=\"HatchJS.com\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/marcusgreenwood\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-26T02:23:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-05T09:18:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hatchjs.com\/wp-content\/uploads\/2023\/12\/Hatch.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tony Becker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@inventur_es\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tony Becker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/\"},\"author\":{\"name\":\"Tony Becker\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\"},\"headline\":\"AttributeError: list object has no attribute &#8216;split&#8217;\",\"datePublished\":\"2023-12-26T02:23:01+00:00\",\"dateModified\":\"2024-01-05T09:18:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/\"},\"wordCount\":1650,\"articleSection\":[\"Error Fixing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/\",\"url\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/\",\"name\":\"AttributeError: list object has no attribute 'split'\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#website\"},\"datePublished\":\"2023-12-26T02:23:01+00:00\",\"dateModified\":\"2024-01-05T09:18:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\"},\"description\":\"AttributeError: 'list' object has no attribute 'split' * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-list-object-has-no-attribute-split-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hatchjs.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AttributeError: list object has no attribute &#8216;split&#8217;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#website\",\"url\":\"https:\\\/\\\/hatchjs.com\\\/\",\"name\":\"HatchJS.com\",\"description\":\"Cracking the Shell of Mystery\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hatchjs.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\",\"name\":\"Tony Becker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"caption\":\"Tony Becker\"},\"sameAs\":[\"http:\\\/\\\/hatchjs.com\",\"https:\\\/\\\/www.facebook.com\\\/marcusgreenwood\\\/\",\"https:\\\/\\\/uk.linkedin.com\\\/in\\\/marcusgreenwood\",\"https:\\\/\\\/www.pinterest.com\\\/hatchjs\\\/\",\"https:\\\/\\\/x.com\\\/inventur_es\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/hatchjs\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AttributeError: list object has no attribute 'split'","description":"AttributeError: 'list' object has no attribute 'split' * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.","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:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/","og_locale":"en_US","og_type":"article","og_title":"AttributeError: list object has no attribute 'split'","og_description":"AttributeError: 'list' object has no attribute 'split' * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.","og_url":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/","og_site_name":"HatchJS.com","article_author":"https:\/\/www.facebook.com\/marcusgreenwood\/","article_published_time":"2023-12-26T02:23:01+00:00","article_modified_time":"2024-01-05T09:18:22+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/hatchjs.com\/wp-content\/uploads\/2023\/12\/Hatch.png","type":"image\/png"}],"author":"Tony Becker","twitter_card":"summary_large_image","twitter_creator":"@inventur_es","twitter_misc":{"Written by":"Tony Becker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/#article","isPartOf":{"@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/"},"author":{"name":"Tony Becker","@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8"},"headline":"AttributeError: list object has no attribute &#8216;split&#8217;","datePublished":"2023-12-26T02:23:01+00:00","dateModified":"2024-01-05T09:18:22+00:00","mainEntityOfPage":{"@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/"},"wordCount":1650,"articleSection":["Error Fixing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/","url":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/","name":"AttributeError: list object has no attribute 'split'","isPartOf":{"@id":"https:\/\/hatchjs.com\/#website"},"datePublished":"2023-12-26T02:23:01+00:00","dateModified":"2024-01-05T09:18:22+00:00","author":{"@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8"},"description":"AttributeError: 'list' object has no attribute 'split' * Learn what causes this error and how to fix it. * Get step-by-step instructions with code examples. * See how to avoid this error in the future.","breadcrumb":{"@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hatchjs.com\/attributeerror-list-object-has-no-attribute-split-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hatchjs.com\/"},{"@type":"ListItem","position":2,"name":"AttributeError: list object has no attribute &#8216;split&#8217;"}]},{"@type":"WebSite","@id":"https:\/\/hatchjs.com\/#website","url":"https:\/\/hatchjs.com\/","name":"HatchJS.com","description":"Cracking the Shell of Mystery","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hatchjs.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8","name":"Tony Becker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","caption":"Tony Becker"},"sameAs":["http:\/\/hatchjs.com","https:\/\/www.facebook.com\/marcusgreenwood\/","https:\/\/uk.linkedin.com\/in\/marcusgreenwood","https:\/\/www.pinterest.com\/hatchjs\/","https:\/\/x.com\/inventur_es","https:\/\/www.youtube.com\/user\/hatchjs"]}]}},"_links":{"self":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/32425","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/comments?post=32425"}],"version-history":[{"count":1,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/32425\/revisions"}],"predecessor-version":[{"id":32427,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/32425\/revisions\/32427"}],"wp:attachment":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/media?parent=32425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/categories?post=32425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/tags?post=32425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}