{"id":3488,"date":"2021-04-27T19:37:19","date_gmt":"2021-04-27T14:07:19","guid":{"rendered":"https:\/\/python-programs.com\/?p=3488"},"modified":"2021-11-22T18:43:03","modified_gmt":"2021-11-22T13:13:03","slug":"python-how-to-find-keys-by-value-in-dictionary","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/","title":{"rendered":"Python : How to find keys by value in dictionary ?"},"content":{"rendered":"

In this article, we will see how to find all the keys associated with a single value or multiple values.<\/p>\n

For instance, we have a dictionary of words.<\/p>\n

\n
dictOfWords = <\/span>{<\/span>\"hello\": <\/span>56<\/span>,\r\n<\/span>\"at\" : <\/span>23<\/span> ,\r\n<\/span>\"test\" : <\/span>43<\/span>,\r\n<\/span>\"this\" : <\/span>97<\/span>,\r\n<\/span>\"here\" : <\/span>43<\/span>,\r\n<\/span>\"now\" : <\/span>97\r\n<\/span>}<\/pre>\n<\/div>\n
\n

Now, we want all the keys in the dictionary having value 43, which means “here” and “test”.<\/p>\n

Let’s see how to get it.<\/p>\n

Find keys by value in the dictionary<\/h2>\n

Dict.items() is the module that returns all the key-value pairs in a dictionary. So, what we will do is check whether the condition is satisfied by iterating over the sequence. If the value is the same then we will add the key in a separate list.<\/p>\n

\n
def<\/span> getKeysByValue<\/span>(<\/span>dictOfElements, valueToFind<\/span>)<\/span>:\r\n<\/span> listOfKeys = list<\/span>()\r\n<\/span>listOfItems = dictOfElements.items<\/span>()\r\n<\/span>for item <\/span>in<\/span> listOfitems:\r\n<\/span>if item<\/span>[<\/span>1<\/span>]<\/span> == valueToFind:\r\n<\/span> listOfKeys.append<\/span>(<\/span>item<\/span>[<\/span>0<\/span>])\r\n<\/span>return listOfKeys<\/span><\/pre>\n<\/div>\n
We will use this function to get the keys by value 43.<\/div>\n
\n
\n
listOfKeys = <\/span>getKeysByValue<\/span>(<\/span>dictOfWords, <\/span>43<\/span>)\r\n<\/span>print(<\/span>\"Keys with value equal to 43\"<\/span>)\r\n<\/span>#Iterate over the list of keys\r\nfor key <\/span>in<\/span> listOfKeys:\r\n<\/span>print(<\/span>key)<\/span><\/pre>\n<\/div>\n
\n

\"Find<\/p>\n

We can achieve the same thing with a list comprehension.<\/p>\n

listOfKeys = <\/span>[<\/span>key <\/span>for<\/span> (<\/span>key, value<\/span>)<\/span> in<\/span> dictOfWords.<\/span>items<\/span>()<\/span> if<\/span> value == <\/span>43<\/span>]<\/span><\/pre>\n

Find keys in the dictionary by value list<\/h3>\n

Now, we want to find the keys in the dictionary whose values matches with the value we will give.<\/p>\n

[<\/span>43<\/span>, <\/span>97<\/span>]<\/span><\/pre>\n

We will do the same thing as we have done above but this time we will iterate the sequence and check whether the value matches with the given value.<\/p>\n

\n
def<\/span> getKeysByValues<\/span>(<\/span>dictOfElements, listOfValues<\/span>)<\/span>:\r\n<\/span>listOfKeys = list<\/span>()\r\n<\/span>listOfItems = dictOfElements.items<\/span>()\r\n<\/span>for item <\/span>in<\/span> listOfItems:\r\n<\/span>if item<\/span>[<\/span>1<\/span>]<\/span> in<\/span> listOfValues:\r\n<\/span> listOfKeys.append<\/span>(<\/span>item<\/span>[<\/span>0<\/span>])\r\n<\/span>return listOfKeys<\/span><\/pre>\n

We will use the above function:<\/p>\n

\n
listOfKeys = <\/span>getKeysByValues<\/span>(<\/span>dictOfWords, <\/span>[<\/span>43<\/span>, <\/span>97<\/span>]<\/span> )\r\n<\/span>#Iterate over the list of values\r\nfor key <\/span>in<\/span> listOfKeys:\r\n<\/span>print(<\/span>key<\/span>)<\/span><\/pre>\n

\"Find<\/p>\n<\/div>\n

Complete Code:<\/strong><\/em><\/p>\n

\n
'''Get a list of keys from dictionary which has the given value'''\r\ndef getKeysByValue(dictOfElements, valueToFind):\r\nlistOfKeys = list()\r\nlistOfItems = dictOfElements.items()\r\nfor item in listOfItems:\r\nif item[1] == valueToFind:\r\nlistOfKeys.append(item[0])\r\nreturn listOfKeys\r\n'''\r\nGet a list of keys from dictionary which has value that matches with any value in given list of values\r\n'''\r\ndef getKeysByValues(dictOfElements, listOfValues):\r\nlistOfKeys = list()\r\nlistOfItems = dictOfElements.items()\r\nfor item in listOfItems:\r\nif item[1] in listOfValues:\r\nlistOfKeys.append(item[0])\r\nreturn listOfKeys\r\ndef main():\r\n# Dictionary of strings and int\r\ndictOfWords = {\r\n\"hello\": 56,\r\n\"at\" : 23 ,\r\n\"test\" : 43,\r\n\"this\" : 97,\r\n\"here\" : 43,\r\n\"now\" : 97}\r\nprint(\"Original Dictionary\")\r\nprint(dictOfWords)\r\n'''\r\nGet list of keys with value 43\r\n'''\r\nlistOfKeys = getKeysByValue(dictOfWords, 43)\r\nprint(\"Keys with value equal to 43\")\r\n#Iterate over the list of keys\r\nfor key in listOfKeys:\r\nprint(key)\r\nprint(\"Keys with value equal to 43\")\r\n'''\r\nGet list of keys with value 43 using list comprehension\r\n'''\r\nlistOfKeys = [key for (key, value) in dictOfWords.items() if value == 43]\r\n#Iterate over the list of keys\r\nfor key in listOfKeys:\r\nprint(key)\r\nprint(\"Keys with value equal to any one from the list [43, 97] \")\r\n'''\r\nGet list of keys with any of the given values\r\n'''\r\nlistOfKeys = getKeysByValues(dictOfWords, [43, 97] )\r\n#Iterate over the list of values\r\nfor key in listOfKeys:\r\nprint(key)\r\nif __name__ == '__main__':\r\nmain()<\/pre>\n

 <\/p>\n<\/div>\n

\n

Hope this article was useful for you.<\/p>\n

Enjoy Reading!<\/strong><\/em><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

In this article, we will see how to find all the keys associated with a single value or multiple values. For instance, we have a dictionary of words. dictOfWords = {“hello”: 56, “at” : 23 , “test” : 43, “this” : 97, “here” : 43, “now” : 97 } Now, we want all the keys …<\/p>\n

Python : How to find keys by value in dictionary ?<\/span> Read More »<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[5],"tags":[],"yoast_head":"\nPython : How to find keys by value in dictionary ? - Python Programs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python : How to find keys by value in dictionary ? - Python Programs\" \/>\n<meta property=\"og:description\" content=\"In this article, we will see how to find all the keys associated with a single value or multiple values. For instance, we have a dictionary of words. dictOfWords = {"hello": 56, "at" : 23 , "test" : 43, "this" : 97, "here" : 43, "now" : 97 } Now, we want all the keys … Python : How to find keys by value in dictionary ? Read More »\" \/>\n<meta property=\"og:url\" content=\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/\" \/>\n<meta property=\"og:site_name\" content=\"Python Programs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/btechgeeks\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-27T14:07:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-22T13:13:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:site\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bahija Siddiqui\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/python-programs.com\/#organization\",\"name\":\"BTech Geeks\",\"url\":\"https:\/\/python-programs.com\/\",\"sameAs\":[\"https:\/\/www.instagram.com\/btechgeeks\/\",\"https:\/\/www.linkedin.com\/in\/btechgeeks\",\"https:\/\/in.pinterest.com\/btechgeek\/\",\"https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg\",\"https:\/\/www.facebook.com\/btechgeeks\",\"https:\/\/twitter.com\/btech_geeks\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"contentUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"width\":350,\"height\":70,\"caption\":\"BTech Geeks\"},\"image\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/python-programs.com\/#website\",\"url\":\"https:\/\/python-programs.com\/\",\"name\":\"Python Programs\",\"description\":\"Python Programs with Examples, How To Guides on Python\",\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/python-programs.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage\",\"url\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png\",\"contentUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png\",\"width\":1275,\"height\":465,\"caption\":\"Find keys by value in dictionary\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage\",\"url\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/\",\"name\":\"Python : How to find keys by value in dictionary ? - Python Programs\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage\"},\"datePublished\":\"2021-04-27T14:07:19+00:00\",\"dateModified\":\"2021-11-22T13:13:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/python-programs.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python : How to find keys by value in dictionary ?\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage\"},\"author\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/7442c33f5d282892c551affb0de5cd16\"},\"headline\":\"Python : How to find keys by value in dictionary ?\",\"datePublished\":\"2021-04-27T14:07:19+00:00\",\"dateModified\":\"2021-11-22T13:13:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage\"},\"wordCount\":208,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/7442c33f5d282892c551affb0de5cd16\",\"name\":\"Bahija Siddiqui\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/978ea39d7d45a7b9c5e7e7b141d5b94b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/978ea39d7d45a7b9c5e7e7b141d5b94b?s=96&d=mm&r=g\",\"caption\":\"Bahija Siddiqui\"},\"url\":\"https:\/\/python-programs.com\/author\/bahija\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python : How to find keys by value in dictionary ? - Python Programs","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:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/","og_locale":"en_US","og_type":"article","og_title":"Python : How to find keys by value in dictionary ? - Python Programs","og_description":"In this article, we will see how to find all the keys associated with a single value or multiple values. For instance, we have a dictionary of words. dictOfWords = {\"hello\": 56, \"at\" : 23 , \"test\" : 43, \"this\" : 97, \"here\" : 43, \"now\" : 97 } Now, we want all the keys … Python : How to find keys by value in dictionary ? Read More »","og_url":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/","og_site_name":"Python Programs","article_publisher":"https:\/\/www.facebook.com\/btechgeeks","article_published_time":"2021-04-27T14:07:19+00:00","article_modified_time":"2021-11-22T13:13:03+00:00","og_image":[{"url":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png"}],"twitter_card":"summary_large_image","twitter_creator":"@btech_geeks","twitter_site":"@btech_geeks","twitter_misc":{"Written by":"Bahija Siddiqui","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/python-programs.com\/#organization","name":"BTech Geeks","url":"https:\/\/python-programs.com\/","sameAs":["https:\/\/www.instagram.com\/btechgeeks\/","https:\/\/www.linkedin.com\/in\/btechgeeks","https:\/\/in.pinterest.com\/btechgeek\/","https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg","https:\/\/www.facebook.com\/btechgeeks","https:\/\/twitter.com\/btech_geeks"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/","url":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","contentUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","width":350,"height":70,"caption":"BTech Geeks"},"image":{"@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/python-programs.com\/#website","url":"https:\/\/python-programs.com\/","name":"Python Programs","description":"Python Programs with Examples, How To Guides on Python","publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/python-programs.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage","url":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png","contentUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png","width":1275,"height":465,"caption":"Find keys by value in dictionary"},{"@type":"WebPage","@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage","url":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/","name":"Python : How to find keys by value in dictionary ? - Python Programs","isPartOf":{"@id":"https:\/\/python-programs.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage"},"datePublished":"2021-04-27T14:07:19+00:00","dateModified":"2021-11-22T13:13:03+00:00","breadcrumb":{"@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/python-programs.com\/"},{"@type":"ListItem","position":2,"name":"Python : How to find keys by value in dictionary ?"}]},{"@type":"Article","@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#article","isPartOf":{"@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage"},"author":{"@id":"https:\/\/python-programs.com\/#\/schema\/person\/7442c33f5d282892c551affb0de5cd16"},"headline":"Python : How to find keys by value in dictionary ?","datePublished":"2021-04-27T14:07:19+00:00","dateModified":"2021-11-22T13:13:03+00:00","mainEntityOfPage":{"@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#webpage"},"wordCount":208,"commentCount":0,"publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"image":{"@id":"https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#primaryimage"},"thumbnailUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/04\/Screenshot-407.png","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/python-programs.com\/python-how-to-find-keys-by-value-in-dictionary\/#respond"]}]},{"@type":"Person","@id":"https:\/\/python-programs.com\/#\/schema\/person\/7442c33f5d282892c551affb0de5cd16","name":"Bahija Siddiqui","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/978ea39d7d45a7b9c5e7e7b141d5b94b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/978ea39d7d45a7b9c5e7e7b141d5b94b?s=96&d=mm&r=g","caption":"Bahija Siddiqui"},"url":"https:\/\/python-programs.com\/author\/bahija\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3488"}],"collection":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/comments?post=3488"}],"version-history":[{"count":6,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3488\/revisions"}],"predecessor-version":[{"id":4453,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3488\/revisions\/4453"}],"wp:attachment":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/media?parent=3488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/categories?post=3488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/tags?post=3488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}