{"id":2648,"date":"2019-07-17T10:30:41","date_gmt":"2019-07-17T10:30:41","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=2648"},"modified":"2024-03-26T07:16:47","modified_gmt":"2024-03-26T07:16:47","slug":"python-strings-tutorials-with-examples","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/","title":{"rendered":"Python Strings Tutorials with Examples"},"content":{"rendered":"<h1>Python Strings Tutorials with Examples<\/h1>\n<p><strong>Python Strings Tutorials with Examples<\/strong>, Welcome to the world of Strings in <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 Introduction to Strings in Python? Or the one who is very keen to explore the <strong>Python Strings Tutorials with Examples<\/strong> that are available? Then you\u2019ve landed on the Right path which provides the standard information of Strings in <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python<\/a>.<\/p>\n<p>Here, we will learn about what is Python strings, Python string literals, How to assign strings to a variable,\u00a0 Multiline assignment strings, and\u00a0Concatenation of strings and more.\u00a0If 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 world-class training environment, then asks your <a 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\">Python training<\/a>. Follow the below-mentioned Python strings tutorial with examples and enhance your skills to become a professional <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\" target=\"_blank\" rel=\"noopener noreferrer\">Python Developer<\/a>.<\/p>\n<h2>What is Python Strings?<\/h2>\n<p>A Python string is a sequence of collection of characters to represent and store the text-based information.\u00a0 Strings can be accessed by both directions &#8211; forward and backward and stored as individual characters in a contiguous memory location. Strings cannot be changed once they have created as they are immutable data types in python.<\/p>\n<h2>String Literals in Python<\/h2>\n<p>In Python, strings can be written with a single or double quotation marks, even with triple quotation marks also.<\/p>\n<p><strong>Example:<\/strong><\/p>\n<p>print(\u2018Python\u2019)<\/p>\n<p>print(\u201cPython\u201d)<\/p>\n<p>print(&#8221;&#8217;python&#8221;&#8217;)<\/p>\n<p>All of the above will give the same result by printing Python<\/p>\n<h3>How to Assign String to a Variable<\/h3>\n<p>A variable name is allotted to string as follows:<\/p>\n<p>P=\u2019python\u2019<\/p>\n<p>print(P)<\/p>\n<h3>Multiline Strings in Python<\/h3>\n<p>We can print multiple lines or statements using a variable with the help of single or double quotes 3 times as follows:<\/p>\n<p>Test=&#8221;&#8221;&#8221;Welcome to&#8230;<\/p>\n<p>&#8230;python world&#8221;&#8221;&#8221;<\/p>\n<p>print(Test)<\/p>\n<p>It will give output as same as lines written in quotes marks above.<\/p>\n<p>Similarly, we can use a single quotation mark as:<\/p>\n<p>test=&#8221;&#8217;Welcome to python world&#8221;&#8217;<\/p>\n<p>print(test)<\/p>\n<h3>Concatenation of Python Strings<\/h3>\n<p>We can join two different strings by concatenation as follows:<\/p>\n<p>X= \u2018wireless\u2019<\/p>\n<p>Y=\u2019network\u2019<\/p>\n<p>print( X+Y)<\/p>\n<p><strong>Output: wireless network<\/strong><\/p>\n<p>If we want to put a space between the strings we can print it as:<\/p>\n<p>print (X+&#8221; &#8220;+Y)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>wireless network<\/p>\n<h3>Strings as arrays<\/h3>\n<p>Python doesn\u2019t have a character data type, a single character is a string with a length of 1.We can access strings as an array. Like arrays, we can access letters (elements) from string with index position. The starting position is 0 means index starts with 0.<\/p>\n<p>Tup=\u2019 python\u2019<\/p>\n<p>print(Tup[0])<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>P<\/p>\n<p>Likewise, we can access all elements of a string with their index positions.<\/p>\n<h3>String Slicing<\/h3>\n<p>We can access the specific part of the string which is nothing but slicing strings. By specifying starting and ending position indices positions we can select a particular part of the string.<\/p>\n<p>A=\u2019python\u2019<\/p>\n<p>print(A[2:])<\/p>\n<p>Output<\/p>\n<p>thon<\/p>\n<p>print(A[1:4])<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>yth<\/p>\n<p># In case of negative indexing, it will count the letters from the end of the strings and gives result accordingly<\/p>\n<p>print(A[-4:-2])<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>th<\/p>\n<h3>String Functions in\u00a0Python<\/h3>\n<h3>Strip():<\/h3>\n<p>It removes any white spaces from the beginning of the end.<\/p>\n<p>Ex) b = \u201cHello python\u201d<br \/>\nprint(b.strip())<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>Hello python\u00a0 (The space before Hello is removed)<\/p>\n<h3>Len():<\/h3>\n<p>It returns the length of the string.<br \/>\nEx) Test = \u201cPythonworld\u201d<br \/>\nprint(len(Test))<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>11<\/p>\n<h3>lower():<\/h3>\n<p>It returns the string into a lower case.<br \/>\nEx) test= \u201cHello PyThon\u201d<br \/>\nprint(test.lower())<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>Hellopython<\/p>\n<h3>upper():<\/h3>\n<p>It returns the string into the upper case.<br \/>\nEx) test= \u201cHello python\u201d<br \/>\nprint(test.upper())<\/p>\n<p><strong>Otuput:<\/strong><\/p>\n<p>HELLOPYTHON<\/p>\n<h3>replace():<\/h3>\n<p>It replaces the string with another string.<br \/>\nEx) test = \u201cTree\u201d<br \/>\nprint(test.replace(\u201cT\u201d, \u201cF\u201d)<\/p>\n<p><strong>Otuput:<\/strong><\/p>\n<p>Free<\/p>\n<h3>format():<\/h3>\n<p>It inserts the number into a string<br \/>\nEx) score = 85<\/p>\n<p>txt = &#8220;Your Maths Score is {}&#8221;<\/p>\n<p>print(txt.format(score))<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>Your Maths Score is 85<\/p>\n<h3>count():<\/h3>\n<p>It will count the number of occurrences of the specified characters.<\/p>\n<p>Ex) c=&#8217;This tuple is immutable&#8217;<\/p>\n<p>c.count(&#8216;i&#8217;)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>3<\/p>\n<h3>find():<\/h3>\n<p>It will give the index position of the string by searching it.<\/p>\n<p>Ex)c=&#8217;This tuple is immutable&#8217;<\/p>\n<p>c.find(&#8216;is&#8217;)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>2<\/p>\n<h3>Split():<\/h3>\n<p>It Splits the string at the specified separator, and we get it as a list<\/p>\n<p>Ex) test=&#8217;Primary&#8217;<\/p>\n<p>test.split(&#8216;r&#8217;)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>[&#8216;P&#8217;, &#8216;ima&#8217;, &#8216;y&#8217;]<\/p>\n<h3>startswith():<\/h3>\n<p>It will return output in the form of True or False depending on whether the mentioned character is present in the given string.<\/p>\n<p>Ex) Y= \u2018network\u2019<\/p>\n<p>Y.startswith(&#8216;w&#8217;)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>False<\/p>\n<p>Z=\u2019wireless\u2019<\/p>\n<p>Z.startswith(\u2018w\u2019)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>True<\/p>\n<h3>For checking whether the character or phrase is present in the given string we can use <strong>in<\/strong> or <strong>not in<\/strong><\/h3>\n<p>Ex)test= &#8220;Tuples are immutable but lists are mutable&#8221;<\/p>\n<p>f = &#8216;are&#8217; in test<\/p>\n<p>print(f)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>True<\/p>\n<p>Similarly, if we take a character or a word which is not available in the above statement then,<\/p>\n<p>test= &#8220;Tuples are immutable but lists are mutable&#8221;<\/p>\n<p>f = &#8216;sets&#8217; in test<\/p>\n<p>print(f)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>False<\/p>\n<p>We can achieve the exact opposite result for <strong>not in<\/strong><\/p>\n<p>test= &#8220;Tuples are immutable but lists are mutable&#8221;<\/p>\n<p>f = &#8216;are&#8217; not in test<\/p>\n<p>print(f)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>False<\/p>\n<p>Similarly, if we take a character or a word which is not available in the above statement then,<\/p>\n<p>test= &#8220;Tuples are immutable but lists are mutable&#8221;<\/p>\n<p>f = &#8216;sets&#8217; not in test<\/p>\n<p>print(f)<\/p>\n<p><strong>Output:<\/strong><\/p>\n<p>True<\/p>\n<p>We hope you understand sets in <strong>Python strings tutorial with examples<\/strong>. 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\/_fy7PI34IoE\" width=\"650\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><\/iframe><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python Strings Tutorials with Examples Python Strings Tutorials with Examples, Welcome to the world of Strings in Python Tutorial. Are you the one who is looking forward to knowing the Introduction to Strings in Python? Or the one who is very keen to explore the Python Strings Tutorials with Examples that are available? Then you\u2019ve [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3432,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,1671],"tags":[369,370,367,371,368],"class_list":["post-2648","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-python-data-types","tag-how-to-assign-string-to-a-variable","tag-multiline-strings-in-python","tag-python-strings-tutorials-with-examples","tag-string-functions-in-python","tag-string-literals-in-python"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python Strings Tutorials with Examples | Prwatech<\/title>\n<meta name=\"description\" content=\"Explore Python Strings Tutorials with Examples &amp; learn what is Python strings &amp; How to assign it, String literals, multiline, in Python.\" \/>\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=\"Python Strings Tutorials with Examples | Prwatech\" \/>\n<meta property=\"og:description\" content=\"Explore Python Strings Tutorials with Examples &amp; learn what is Python strings &amp; How to assign it, String literals, multiline, in Python.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-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:30:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T07:16:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.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=\"5 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-strings-tutorials-with-examples\/\",\"url\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/\",\"name\":\"Python Strings Tutorials with Examples | Prwatech\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg\",\"datePublished\":\"2019-07-17T10:30:41+00:00\",\"dateModified\":\"2024-03-26T07:16:47+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"Explore Python Strings Tutorials with Examples & learn what is Python strings & How to assign it, String literals, multiline, in Python.\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg\",\"width\":960,\"height\":550,\"caption\":\"Python Strings\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Strings Tutorials 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":"Python Strings Tutorials with Examples | Prwatech","description":"Explore Python Strings Tutorials with Examples & learn what is Python strings & How to assign it, String literals, multiline, in Python.","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":"Python Strings Tutorials with Examples | Prwatech","og_description":"Explore Python Strings Tutorials with Examples & learn what is Python strings & How to assign it, String literals, multiline, in Python.","og_url":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2019-07-17T10:30:41+00:00","article_modified_time":"2024-03-26T07:16:47+00:00","og_image":[{"width":960,"height":550,"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/","url":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/","name":"Python Strings Tutorials with Examples | Prwatech","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg","datePublished":"2019-07-17T10:30:41+00:00","dateModified":"2024-03-26T07:16:47+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"Explore Python Strings Tutorials with Examples & learn what is Python strings & How to assign it, String literals, multiline, in Python.","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/07\/Python-Strings.jpg","width":960,"height":550,"caption":"Python Strings"},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/python\/python-data-types\/python-strings-tutorials-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Python Strings Tutorials 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\/2648","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=2648"}],"version-history":[{"count":9,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2648\/revisions"}],"predecessor-version":[{"id":5683,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2648\/revisions\/5683"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media\/3432"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=2648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=2648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=2648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}