{"id":29384,"date":"2021-02-26T10:55:46","date_gmt":"2021-02-26T18:55:46","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29384"},"modified":"2023-12-01T04:09:02","modified_gmt":"2023-12-01T12:09:02","slug":"python-convert-list-to-string","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/","title":{"rendered":"Python Convert List to String: A How-To Guide"},"content":{"rendered":"\n<p>Suppose you are building an application that shows the grades a student has earned on a test. These grades are stored in a list but you want to present them as a string. How would you go about doing that? That&#8217;s where the Python <em>join()<\/em> method can be useful.<br><\/p>\n\n\n\n<p>In this guide, we&#8217;re going to talk about how to convert a Python list to a string using the <em>join()<\/em> method. We will discuss how to join a list of strings and a list containing other data types into a single string. Let&#8217;s get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-python-convert-list-to-string\">Python Convert List to String<\/h2>\n\n\n\n<p>You can use the Python <em>join()<\/em> method to convert a list into a string. The <em>join()<\/em> method reads all the items in an object (i.e. a list or a tuple) and merges them together. If you have a list of strings, you only need the <em>join()<\/em> method. You will need to use other methods in addition to the <em>join()<\/em> method if you want to change a list that contains non-string data types into a string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-python-convert-list-to-string-list-of-strings\">Python Convert List to String: List of Strings<\/h2>\n\n\n\n<p>The syntax to convert a list of strings into a single string is:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>values = [\"value1\", \"value2\"]\nnew_values = \", \".join(values)\nprint(new_values)<\/pre><\/div>\n\n\n\n<p>This code merges our two values into a string. The value inside our quotation marks before the <em>.join()<\/em> method tells us how each string will be separated. In this case, we separated each string with a comma and then a space. Our code returns:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>value1, value2<\/pre><\/div>\n\n\n\n<p>Suppose we have a list that contains the ingredients necessary to bake a scone. We have these ingredients stored as a list but we want to convert the list to a string. Our intention is to display a message on the Python console stating what ingredients are needed for a recipe.<br><\/p>\n\n\n\n<p>To start, let&#8217;s define our list of ingredients:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ingredients = [\"350g self-raising flour\", \"85g butter\", \"3 tablespoons caster sugar\", \"175ml milk\", \"1 teaspoon baking powder\", \"1 teaspoon vanilla extract\"]<\/pre><\/div>\n\n\n\n<p>Next, let&#8217;s use the <em>join()<\/em> method to convert our list into a single string:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(\", \".join(ingredients))<\/pre><\/div>\n\n\n\n<p>We use the <em>.join()<\/em> method to combine our list. Each item in our list will appear between a &#8220;, &#8221; string in our final string. This will make it easier for us to read the ingredients. Let&#8217;s run our code and see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>350g self-raising flour, 85g butter, 3 tablespoons caster sugar, 175ml milk, 1 teaspoon baking powder, 1 teaspoon vanilla extract<\/pre><\/div>\n\n\n\n<p>Our code successfully displays the list of ingredients.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-python-convert-list-to-string-integers-or-floats-or-a-combination\">Python Convert List to String: Integers or Floats, or a Combination<\/h2>\n\n\n\n<p>The<em> join()<\/em> method only combines lists of strings. To convert a list that contains at least one integer or float to a string, you will need to use some method of converting the integers and floats to strings. Common methods include list comprehensions and the <em>map()<\/em> method.<br><\/p>\n\n\n\n<p>Suppose we have a list that contains all of the ratings a scone has received by a panel of judges. Our list contains only integers:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ratings = [4, 3, 4, 5, 4]<\/pre><\/div>\n\n\n\n<p>We want to convert this list into a string. To do so, we could use this code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>final_ratings = \", \".join([str(r) for r in ratings])<\/pre><\/div>\n\n\n\n<p>We use a list comprehension to iterate over every item in the ratings list. We convert each item to a string using the <em>str()<\/em> method. Then, we use the <em>join()<\/em> method to add all of these values into the final_ratings string. Let&#8217;s display the contents of our string to the console:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(\"The judges scored this recipe: \" + final_ratings)<\/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>The judges scored this recipe: 4, 3, 4, 5, 4<\/pre><\/div>\n\n\n\n<p>We have successfully printed our list of integers to the console.<br><\/p>\n\n\n\n<p>We could also use the <em>map()<\/em> method to achieve the same result as our example above:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ratings = [4, 3, 4, 5, 4]\nfinal_ratings = \", \".join(map(str, ratings))\nprint(\"The judges scored this recipe: \" + final_ratings)<\/pre><\/div>\n\n\n\n<p>The <em>map()<\/em> method converts every item in our ratings list to a string. We pass the result of the <em>map()<\/em> method through the <em>join()<\/em> method to create a string.<\/p>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>The judges scored this recipe: 4, 3, 4, 5, 4<\/pre><\/div>\n\n\n\n<p>As you can see, our code returns the same result as our example that used a list comprehension instead of the <em>map()<\/em> method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>The Python <em>join()<\/em> method lets you combine a list of strings into a string. You can use a list comprehension or the <em>map()<\/em> function in addition to the <em>join()<\/em> method to convert a list that contains at least one integer or float into a string.<br><\/p>\n\n\n\n<p>Do you want to learn more about Python? Check out our How to Learn Python guide. This guide contains top tips on how to learn Python as well as a list of top courses and books to help you advance your Python knowledge.<\/p>\n","protected":false},"excerpt":{"rendered":"Suppose you are building an application that shows the grades a student has earned on a test. These grades are stored in a list but you want to present them as a string. How would you go about doing that? That's where the Python join() method can be useful. In this guide, we're going to&hellip;","protected":false},"author":240,"featured_media":2789,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-29384","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>Python Convert List to String: A How-To Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn how to convert a list to a string in Python using the join() 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-convert-list-to-string\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Convert List to String: A How-To Guide\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn how to convert a list to a string in Python using the join() method.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\" \/>\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=\"2021-02-26T18:55:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:09:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Convert List to String: A How-To Guide\",\"datePublished\":\"2021-02-26T18:55:46+00:00\",\"dateModified\":\"2023-12-01T12:09:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\"},\"wordCount\":704,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\",\"name\":\"Python Convert List to String: A How-To Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\",\"datePublished\":\"2021-02-26T18:55:46+00:00\",\"dateModified\":\"2023-12-01T12:09:02+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn how to convert a list to a string in Python using the join() method.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#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\":\"Python Convert List to String: A How-To Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python Convert List to String: A How-To Guide | Career Karma","description":"On Career Karma, learn how to convert a list to a string in Python using the join() 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-convert-list-to-string\/","og_locale":"en_US","og_type":"article","og_title":"Python Convert List to String: A How-To Guide","og_description":"On Career Karma, learn how to convert a list to a string in Python using the join() method.","og_url":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-02-26T18:55:46+00:00","article_modified_time":"2023-12-01T12:09:02+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Convert List to String: A How-To Guide","datePublished":"2021-02-26T18:55:46+00:00","dateModified":"2023-12-01T12:09:02+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/"},"wordCount":704,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/","url":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/","name":"Python Convert List to String: A How-To Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","datePublished":"2021-02-26T18:55:46+00:00","dateModified":"2023-12-01T12:09:02+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn how to convert a list to a string in Python using the join() method.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-convert-list-to-string\/#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":"Python Convert List to String: A How-To Guide"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29384","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=29384"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29384\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/2789"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29384"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29384"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29384"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}