{"id":2646,"date":"2019-07-17T10:27:29","date_gmt":"2019-07-17T10:27:29","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=2646"},"modified":"2024-03-26T07:14:19","modified_gmt":"2024-03-26T07:14:19","slug":"python-tuple-tutorials-with-examples","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/","title":{"rendered":"Python Tuple Tutorial with Examples"},"content":{"rendered":"<h1><span data-sheets-root=\"1\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Creating Tuples in Python&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\">Creating Tuples in Python<\/span><\/h1>\n<p>&nbsp;<\/p>\n<p><strong>Python Tuple Tutorial with Examples<\/strong>, Welcome to the world of Tuples in\u00a0<a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python Tutorial<\/a>. Are you the one who is looking forward to knowing the Tuples in Python? Or the one who is very keen to explore the Tuples in <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\">online python course<\/a>\u00a0with Examples that are available? Then you\u2019ve landed on the Right path which provides the standard information of Tuples in <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">python training course online<\/a>.<\/p>\n<p>Here, one can learn what is <strong>Python Tuples Tutorials with Examples<\/strong>, how to create a tuple in Python, nested tuples, repeating tuples, and tuple operations in python. If you are the one who wanted to become an expert in Python? Or the one who wants to explore the technology like a Pro under the certified experts with a world-class training environment, then asks your <a title=\"python training in btm\" href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python training institute<\/a> experts who offer Advanced advanced advanced <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">online python course with a certificate<\/a>. Follow the below-mentioned Python Tuple tutorials with examples and enhance your skills to become a professional <a title=\"python training in btm Layout\" href=\"https:\/\/prwatech.in\/python-training-institute-in-btm-layout\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python Developer<\/a>.<\/p>\n<h2>What is Python Tuple?<\/h2>\n<p>A tuple is an immutable ordered collection of elements in python enclosed with round brackets. The difference between tuples and lists is, a tuple is immutable means we can\u2019t change tuple like a list. Lists are created with square brackets whereas tuples are created using parentheses.<\/p>\n<h3>How to Create a Tuple in Python?<\/h3>\n<p><strong>Creating Tuples:<\/strong> To create a tuple we just have to put values with separated commas in round brackets.\u00a0\u00a0tup1 = (1,2,3,6,7,8);\u00a0we can also put strings in tuple as follows:\u00a0tup2 = (\u2018green\u2019,\u2019yellow\u2019,\u2019red\u2019);\u00a0Or we can put string with double inverted commas as :\u00a0tup3 = &#8220;green&#8221;, &#8220;red&#8221;, &#8220;yellow&#8221;;<\/p>\n<p>The empty tuple can be created with two parentheses having no value:<\/p>\n<p>tup12 = ();<\/p>\n<p>To create the tuple with a single value we have to write comma after that value although it is having no further values.<\/p>\n<p>test = (15,);<\/p>\n<p>Tuples start with index \u20180\u2019. They can be manipulated by slicing, concatenating, and further processes like lists.<\/p>\n<h3>Repeating Tuples N times:<\/h3>\n<p>If we want to repeat the string \u2018n\u2019 times then we can do it as follows:<\/p>\n<p>test=(\u2018stats\u2019)*4<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>statsstatsstatsstats<\/p>\n<p>It will give a continuous string as output.<\/p>\n<p>If we want separate strings as output we have to write<\/p>\n<p>Test= (\u2018stats\u2019,)*4<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>(\u2018Stats&#8217;, &#8216;stats&#8217;, &#8216;stats&#8217;, &#8216;stats&#8217;)<\/p>\n<h3><b>Nested Tuples in Python<\/b><\/h3>\n<p>Nested tuples can be created as follows:<\/p>\n<p>tup1 =(0, 4,8,12)<\/p>\n<p>tup2 =(\u2018tuple\u2019,&#8217;python&#8217;)<\/p>\n<p>tuplnest =(tup1, tup2)<\/p>\n<p>Print(tuplnest)<\/p>\n<p><strong>Output<\/strong><\/p>\n<p>(0, 4, 8, 12,\u2019tuple\u2019,\u2019python\u2019)<\/p>\n<h3>Immutable tuple in Python<\/h3>\n<p>Tuples are immutable, unlike lists. The elements in tuple can\u2019t be edited.<\/p>\n<p>Let\u2019s see one example:<\/p>\n<p>tup =(0, 1, \u2018x\u2019, \u2018y\u2019)<\/p>\n<p>tuple1[0] =4<\/p>\n<p>print(tup)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>TypeError: &#8216;tuple&#8217; object does not support item assignment.<\/p>\n<h3><strong>Slicing<\/strong>\u00a0\u00a0<strong>Tuple in Python<\/strong><\/h3>\n<p>In tuple slicing we can select the part of tuple as output , defined by starting and ending index as follows:<\/p>\n<p><strong>Ex)<\/strong><\/p>\n<p>test=(0,2,4,5,6,7,8,9,12)<\/p>\n<p>print(test[1:])<\/p>\n<p><strong>Output:<\/strong>\u00a0(2,4,5,6,7,8,9,12)<\/p>\n<p>print(test[2:5])<\/p>\n<p><strong>Output:<\/strong>\u00a0(4,5,6)<\/p>\n<p>print(test[::-1])<strong>\u00a0<\/strong><\/p>\n<p><strong>Output:<\/strong>\u00a0(12,9,8,7,6,5,4,2,1,0)<\/p>\n<p># We get output in exact reverse order.<\/p>\n<p>print(test[-3:-1])<\/p>\n<p><strong>Output:<\/strong>\u00a0(8,9)<strong>\u00a0<\/strong><\/p>\n<h2>Tuple Operations in Python<\/h2>\n<h3><strong>Deleting an item from Tuple:<\/strong><strong>\u00a0<\/strong><\/h3>\n<p>We can delete the tuple by using the simply del command<\/p>\n<p>tup1=( 0, 1,\u2019a\u2019,\u2019b\u2019)<\/p>\n<p>deltup1<\/p>\n<p>For confirmation, if we again print it will give an error<\/p>\n<p>print(tuple3)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>NameError: name \u2018tup1\u2019 is not defined<\/p>\n<h3><strong>Length of Tuple:<\/strong><\/h3>\n<p>To find the length of a tuple we use function len()<\/p>\n<p>test=(1,2,5,&#8217;testing&#8217;,&#8217;length&#8217;,&#8217;of&#8217;,&#8217;tuple&#8217;)<\/p>\n<p>print(len(test))<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>7<\/p>\n<p><strong>\u00a0<\/strong><\/p>\n<h3><strong>Use of count()<\/strong><\/h3>\n<p>To find the count of a particular element in tuple this function is used.<\/p>\n<p>test=(0,1,2,3,1,2,4,5,6,1,2,1)<\/p>\n<p>print(test.count(1))<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>4<\/p>\n<h3><strong>Use of index()<\/strong><\/h3>\n<p>It returns index of specified element in tuple.<\/p>\n<p>tup=(1,2,5,&#8217;a&#8217;,&#8217;python&#8217;,&#8217;tuple&#8217;)<\/p>\n<p>print(tup.index(&#8216;python&#8217;))<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>4<\/p>\n<h3><strong>Converting a list to a Tuple<\/strong><\/h3>\n<p>To convert a list into a tuple following method can be used<\/p>\n<p>Ex) lis1=[1,2,4,&#8217;a&#8217;,&#8217;b&#8217;,&#8217;c&#8217;,&#8217;e&#8217;]<\/p>\n<p>print(lis1)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>(1,2,4,&#8217;a&#8217;,&#8217;b&#8217;,&#8217;c&#8217;,&#8217;e&#8217;)<\/p>\n<p>If we take a single string and we applied the same method as above, we get a tuple having all separated characters.<\/p>\n<p><strong>Ex)<\/strong> print(tuple(\u2018python tuple\u2019)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>(&#8216;p&#8217;, &#8216;y&#8217;, &#8216;t&#8217;, &#8216;h&#8217;, &#8216;o&#8217;, &#8216;n&#8217;, &#8216; &#8216;, &#8216;t&#8217;, &#8216;u&#8217;, &#8216;p&#8217;, &#8216;l&#8217;, &#8216;e&#8217;, &#8216;s&#8217;)<\/p>\n<p><em>Note: Here a space is also considered as character.<\/em><\/p>\n<h3><strong>To compare tuples<\/strong><\/h3>\n<p>For comparison purpose cmp(), min(), max() are used.<\/p>\n<p>Let\u2019s consider following tuples<\/p>\n<p>tup1=(1,2,3,4,5)<\/p>\n<p>tup2=(1,2,3,4,5,6)<\/p>\n<p>To find minimum out of these tuples we use.<\/p>\n<p>Ex) min(tup1,tup2)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>(1,2,3,4,5)<\/p>\n<p>To find the maximum out of these tuples we use.<\/p>\n<p>Ex) max(tup1,tup2)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>(1,2,3,4,5,6)<\/p>\n<h3><strong>Checking for an element in Tuple<\/strong><\/h3>\n<p>For this, we have to use the keyword \u2018in\u2019. It will give output in the form of True or False.<\/p>\n<p>Ex) test=(1,2,3,\u2019a\u2019,\u2019b\u2019,\u2019c\u2019)<\/p>\n<p>3 in test<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>True<\/p>\n<p>Ex) test=(1,2,3,\u2019a\u2019,\u2019b\u2019,\u2019c\u2019)<\/p>\n<p>\u2018x\u2019 in test<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>False<\/p>\n<p>We hope you understand the <strong>Python Tuples Tutorials with Examples<\/strong> concepts. Get success in your career as a <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python Developer<\/a> by being a part of the <a href=\"https:\/\/prwatech.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Prwatech<\/a>, India&#8217;s leading <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python training institute in Bangalore<\/a>.<\/p>\n<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/Ec3RgAFJUnc\" width=\"650\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating Tuples in Python &nbsp; Python Tuple Tutorial with Examples, Welcome to the world of Tuples in\u00a0Python Tutorial. Are you the one who is looking forward to knowing the Tuples in Python? Or the one who is very keen to explore the Tuples in online python course\u00a0with Examples that are available? Then you\u2019ve landed on [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3435,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,1671],"tags":[546,543,545,547,79],"class_list":["post-2646","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-python-data-types","tag-online-python-programming-course","tag-online-training-courses-for-python","tag-python-training-course-online","tag-python-training-online","tag-python-tuples-tutorials-with-examples"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating Tuples in Python - Python<\/title>\n<meta name=\"description\" content=\"Explore Creating Tuples in Python from Prwatech &amp; learn what is Python tuple, how to create a tuple, Tuple operations and more.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating Tuples in Python - Python\" \/>\n<meta property=\"og:description\" content=\"Explore Creating Tuples in Python from Prwatech &amp; learn what is Python tuple, how to create a tuple, Tuple operations and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Prwatech\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prwatech.in\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-17T10:27:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T07:14:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Prwatech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:site\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prwatech\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/\",\"url\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/\",\"name\":\"Creating Tuples in Python - Python\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg\",\"datePublished\":\"2019-07-17T10:27:29+00:00\",\"dateModified\":\"2024-03-26T07:14:19+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"Explore Creating Tuples in Python from Prwatech & learn what is Python tuple, how to create a tuple, Tuple operations and more.\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg\",\"width\":960,\"height\":550,\"caption\":\"Python Tuples Tutorials with Best Examples\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Tuple Tutorial with Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/prwatech.in\/blog\/#website\",\"url\":\"https:\/\/prwatech.in\/blog\/\",\"name\":\"Prwatech\",\"description\":\"Share Ideas, Start Something Good.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/prwatech.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\",\"name\":\"Prwatech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"caption\":\"Prwatech\"},\"url\":\"https:\/\/prwatech.in\/blog\/author\/prwatech123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating Tuples in Python - Python","description":"Explore Creating Tuples in Python from Prwatech & learn what is Python tuple, how to create a tuple, Tuple operations and more.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Creating Tuples in Python - Python","og_description":"Explore Creating Tuples in Python from Prwatech & learn what is Python tuple, how to create a tuple, Tuple operations and more.","og_url":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2019-07-17T10:27:29+00:00","article_modified_time":"2024-03-26T07:14:19+00:00","og_image":[{"width":960,"height":550,"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg","type":"image\/jpeg"}],"author":"Prwatech","twitter_card":"summary_large_image","twitter_creator":"@Eduprwatech","twitter_site":"@Eduprwatech","twitter_misc":{"Written by":"Prwatech","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/","url":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/","name":"Creating Tuples in Python - Python","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg","datePublished":"2019-07-17T10:27:29+00:00","dateModified":"2024-03-26T07:14:19+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"Explore Creating Tuples in Python from Prwatech & learn what is Python tuple, how to create a tuple, Tuple operations and more.","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Tuples-Tutorials-with-Best-Examples.jpg","width":960,"height":550,"caption":"Python Tuples Tutorials with Best Examples"},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-tuple-tutorials-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Python Tuple Tutorial with Examples"}]},{"@type":"WebSite","@id":"https:\/\/prwatech.in\/blog\/#website","url":"https:\/\/prwatech.in\/blog\/","name":"Prwatech","description":"Share Ideas, Start Something Good.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prwatech.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3","name":"Prwatech","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","caption":"Prwatech"},"url":"https:\/\/prwatech.in\/blog\/author\/prwatech123\/"}]}},"_links":{"self":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/comments?post=2646"}],"version-history":[{"count":13,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2646\/revisions"}],"predecessor-version":[{"id":11102,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2646\/revisions\/11102"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media\/3435"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=2646"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=2646"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=2646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}