{"id":2110,"date":"2022-11-24T13:55:36","date_gmt":"2022-11-24T08:25:36","guid":{"rendered":"http:\/\/coderzpy.com\/?p=2110"},"modified":"2022-11-24T13:55:38","modified_gmt":"2022-11-24T08:25:38","slug":"string-functions-ii","status":"publish","type":"post","link":"https:\/\/coderzpy.com\/python\/string-functions-ii\/","title":{"rendered":"String Functions &#8211; II"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Table of Python String Methods.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th><strong>Function Name\u00a0<\/strong><\/th><th><strong>Description<\/strong><\/th><\/tr><\/thead><tbody><tr><td>capitalize()<\/td><td>The string&#8217;s first character is changed to an uppercase (capital) letter.<\/td><\/tr><tr><td>casefold()<\/td><td>Implements caseless string matching<\/td><\/tr><tr><td>center()<\/td><td>Add the requested character to the string as padding.<\/td><\/tr><tr><td>count()<\/td><td>Returns the number of occurrences of a substring in the string.<\/td><\/tr><tr><td>encode()<\/td><td>Encodes strings with the specified encoding scheme<\/td><\/tr><tr><td>endswith()<\/td><td>Returns \u201cTrue\u201d if a string ends with the given suffix<\/td><\/tr><tr><td>expandtabs()<\/td><td>Specifies the amount of space to be substituted with the \u201c\\t\u201d symbol in the string<\/td><\/tr><tr><td>find()<\/td><td>Returns the lowest index of the substring if it is found<\/td><\/tr><tr><td>format()<\/td><td>Formats the string for printing it to console<\/td><\/tr><tr><td>format_map()<\/td><td>Formats specified values in a string using a dictionary<\/td><\/tr><tr><td>index()<\/td><td>Returns the position of the first occurrence of a substring in a string<\/td><\/tr><tr><td>isalnum()<\/td><td>Checks whether all the characters in a given string are alphanumeric or not<\/td><\/tr><tr><td>isalpha()<\/td><td>Returns \u201cTrue\u201d if all characters in the string are alphabet<\/td><\/tr><tr><td>isdecimal()<\/td><td>Returns true if all characters in a string are decimal<\/td><\/tr><tr><td>isdigit()<\/td><td>Returns \u201cTrue\u201d if all characters in the string are digits<\/td><\/tr><tr><td>isidentifier()<\/td><td>Check whether a string is a valid identifier or not<\/td><\/tr><tr><td>islower()<\/td><td>Checks if all characters in the string are lowercase<\/td><\/tr><tr><td>isnumeric()<\/td><td>Returns \u201cTrue\u201d if all characters in the string are numeric characters<\/td><\/tr><tr><td>isprintable()<\/td><td>Returns \u201cTrue\u201d if all characters in the string are printable or the string is empty<\/td><\/tr><tr><td>isspace()<\/td><td>Returns \u201cTrue\u201d if all characters in the string are whitespace characters<\/td><\/tr><tr><td>istitle()<\/td><td>Returns \u201cTrue\u201d if the string is a title cased string<\/td><\/tr><tr><td>isupper()<\/td><td>Checks if all characters in the string are uppercase<\/td><\/tr><tr><td>join()<\/td><td>Returns a concatenated String<\/td><\/tr><tr><td>ljust()<\/td><td>Left aligns the string according to the width specified<\/td><\/tr><tr><td>lower()<\/td><td>Converts all uppercase characters in a string into lowercase<\/td><\/tr><tr><td>lstrip()<\/td><td>Returns the string with leading characters removed<\/td><\/tr><tr><td>maketrans()<\/td><td>&nbsp;Returns a translation table<\/td><\/tr><tr><td>partition()<\/td><td>Splits the string at the first occurrence of the separator&nbsp;<\/td><\/tr><tr><td>replace()<\/td><td>Replaces all occurrences of a substring with another substring<\/td><\/tr><tr><td>rfind()<\/td><td>Returns the highest index of the substring<\/td><\/tr><tr><td>rindex()<\/td><td>Returns the highest index of the substring inside the string<\/td><\/tr><tr><td>rjust()<\/td><td>Right aligns the string according to the width specified<\/td><\/tr><tr><td>rpartition()<\/td><td>Split the given string into three parts<\/td><\/tr><tr><td>rsplit()<\/td><td>Split the string from the right by the specified separator<\/td><\/tr><tr><td>rstrip()<\/td><td>Removes trailing characters<\/td><\/tr><tr><td>splitlines()<\/td><td>Split the lines at line boundaries<\/td><\/tr><tr><td>startswith()<\/td><td>Returns \u201cTrue\u201d if a string starts with the given prefix<\/td><\/tr><tr><td>strip()<\/td><td>Returns the string with both leading and trailing characters<\/td><\/tr><tr><td>swapcase()<\/td><td>Converts all uppercase characters to lowercase and vice versa<\/td><\/tr><tr><td>title()<\/td><td>Convert string to title case<\/td><\/tr><tr><td>translate()<\/td><td>Modify string according to given translation mappings<\/td><\/tr><tr><td>upper()<\/td><td>Converts all lowercase characters in a string into uppercase<\/td><\/tr><tr><td>zfill()<\/td><td>Returns a copy of the string with \u20180\u2019 characters padded to the left side of the string<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Note: also read about<\/em>\u00a0<a href=\"https:\/\/coderzpy.com\/string-functions-in-python\/\">String Functions in Python<\/a><\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Follow Me<\/strong><\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">Please follow me to read my latest post on programming and technology if you like my post.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.instagram.com\/coderz.py\/\">https:\/\/www.instagram.com\/coderz.py\/<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.facebook.com\/coderz.py\">https:\/\/www.facebook.com\/coderz.py<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Table of Python String Methods. Function Name\u00a0 Description capitalize() The string&#8217;s first character is changed to an uppercase (capital) letter. &#8230;<\/p>\n","protected":false},"author":3,"featured_media":2030,"menu_order":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[97,5,460,520,518],"class_list":["post-2110","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-functions","tag-python","tag-python-programming-language","tag-python-string","tag-strings-in-python"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Rabecca Fatima\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/coderzpy.com\/python\/string-functions-ii\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"coderz.py - Keep Coding Keep Cheering!\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"String Functions \u2013 II - coderz.py\" \/>\n\t\t<meta property=\"og:description\" content=\"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/coderzpy.com\/python\/string-functions-ii\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-11-24T08:25:36+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-11-24T08:25:38+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"String Functions \u2013 II - coderz.py\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#blogposting\",\"name\":\"String Functions \\u2013 II - coderz.py\",\"headline\":\"String Functions &#8211; II\",\"author\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/author\\\/rabecca\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/imae.png\",\"width\":300,\"height\":168,\"caption\":\"JOIN Clause\"},\"datePublished\":\"2022-11-24T13:55:36+05:30\",\"dateModified\":\"2022-11-24T13:55:38+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#webpage\"},\"articleSection\":\"Python, functions, python, Python programming language, Python String, Strings in Python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/coderzpy.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/course\\\/python\\\/#listItem\",\"name\":\"Python\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/course\\\/python\\\/#listItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\\\/\\\/coderzpy.com\\\/course\\\/python\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#listItem\",\"name\":\"String Functions &#8211; II\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#listItem\",\"position\":3,\"name\":\"String Functions &#8211; II\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/course\\\/python\\\/#listItem\",\"name\":\"Python\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/#organization\",\"name\":\"coderz.py\",\"description\":\"Keep Coding Keep Cheering!\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/author\\\/rabecca\\\/#author\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/author\\\/rabecca\\\/\",\"name\":\"Rabecca Fatima\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/209225ca96598bab25f758a45345c5082dc77605dc36a7caeb0a66b601be2860?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"Rabecca Fatima\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#webpage\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/\",\"name\":\"String Functions \\u2013 II - coderz.py\",\"description\":\"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\\\/\\\/www.instagram.com\\\/coderz.py\\\/ https:\\\/\\\/www.facebook.com\\\/coderz.py\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/author\\\/rabecca\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/author\\\/rabecca\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/imae.png\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#mainImage\",\"width\":300,\"height\":168,\"caption\":\"JOIN Clause\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/python\\\/string-functions-ii\\\/#mainImage\"},\"datePublished\":\"2022-11-24T13:55:36+05:30\",\"dateModified\":\"2022-11-24T13:55:38+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/coderzpy.com\\\/#website\",\"url\":\"https:\\\/\\\/coderzpy.com\\\/\",\"name\":\"coderz.py\",\"description\":\"Keep Coding Keep Cheering!\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/coderzpy.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"String Functions \u2013 II - coderz.py","description":"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py","canonical_url":"https:\/\/coderzpy.com\/python\/string-functions-ii\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#blogposting","name":"String Functions \u2013 II - coderz.py","headline":"String Functions &#8211; II","author":{"@id":"https:\/\/coderzpy.com\/author\/rabecca\/#author"},"publisher":{"@id":"https:\/\/coderzpy.com\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/coderzpy.com\/wp-content\/uploads\/2022\/11\/imae.png","width":300,"height":168,"caption":"JOIN Clause"},"datePublished":"2022-11-24T13:55:36+05:30","dateModified":"2022-11-24T13:55:38+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#webpage"},"isPartOf":{"@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#webpage"},"articleSection":"Python, functions, python, Python programming language, Python String, Strings in Python"},{"@type":"BreadcrumbList","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/coderzpy.com#listItem","position":1,"name":"Home","item":"https:\/\/coderzpy.com","nextItem":{"@type":"ListItem","@id":"https:\/\/coderzpy.com\/course\/python\/#listItem","name":"Python"}},{"@type":"ListItem","@id":"https:\/\/coderzpy.com\/course\/python\/#listItem","position":2,"name":"Python","item":"https:\/\/coderzpy.com\/course\/python\/","nextItem":{"@type":"ListItem","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#listItem","name":"String Functions &#8211; II"},"previousItem":{"@type":"ListItem","@id":"https:\/\/coderzpy.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#listItem","position":3,"name":"String Functions &#8211; II","previousItem":{"@type":"ListItem","@id":"https:\/\/coderzpy.com\/course\/python\/#listItem","name":"Python"}}]},{"@type":"Organization","@id":"https:\/\/coderzpy.com\/#organization","name":"coderz.py","description":"Keep Coding Keep Cheering!","url":"https:\/\/coderzpy.com\/"},{"@type":"Person","@id":"https:\/\/coderzpy.com\/author\/rabecca\/#author","url":"https:\/\/coderzpy.com\/author\/rabecca\/","name":"Rabecca Fatima","image":{"@type":"ImageObject","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/209225ca96598bab25f758a45345c5082dc77605dc36a7caeb0a66b601be2860?s=96&d=identicon&r=g","width":96,"height":96,"caption":"Rabecca Fatima"}},{"@type":"WebPage","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#webpage","url":"https:\/\/coderzpy.com\/python\/string-functions-ii\/","name":"String Functions \u2013 II - coderz.py","description":"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/coderzpy.com\/#website"},"breadcrumb":{"@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#breadcrumblist"},"author":{"@id":"https:\/\/coderzpy.com\/author\/rabecca\/#author"},"creator":{"@id":"https:\/\/coderzpy.com\/author\/rabecca\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/coderzpy.com\/wp-content\/uploads\/2022\/11\/imae.png","@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#mainImage","width":300,"height":168,"caption":"JOIN Clause"},"primaryImageOfPage":{"@id":"https:\/\/coderzpy.com\/python\/string-functions-ii\/#mainImage"},"datePublished":"2022-11-24T13:55:36+05:30","dateModified":"2022-11-24T13:55:38+05:30"},{"@type":"WebSite","@id":"https:\/\/coderzpy.com\/#website","url":"https:\/\/coderzpy.com\/","name":"coderz.py","description":"Keep Coding Keep Cheering!","inLanguage":"en-US","publisher":{"@id":"https:\/\/coderzpy.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"coderz.py - Keep Coding Keep Cheering!","og:type":"article","og:title":"String Functions \u2013 II - coderz.py","og:description":"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py","og:url":"https:\/\/coderzpy.com\/python\/string-functions-ii\/","article:published_time":"2022-11-24T08:25:36+00:00","article:modified_time":"2022-11-24T08:25:38+00:00","twitter:card":"summary_large_image","twitter:title":"String Functions \u2013 II - coderz.py","twitter:description":"Table of Python String Methods. Note: also read about String Functions in Python Follow Me Please follow me to read my latest post on programming and technology if you like my post. https:\/\/www.instagram.com\/coderz.py\/ https:\/\/www.facebook.com\/coderz.py"},"aioseo_meta_data":{"post_id":"2110","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-12-30 12:36:57","updated":"2026-09-02 21:56:49","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/coderzpy.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/coderzpy.com\/course\/python\/\" title=\"Python\">Python<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tString Functions \u2013 II\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/coderzpy.com"},{"label":"Python","link":"https:\/\/coderzpy.com\/course\/python\/"},{"label":"String Functions &#8211; II","link":"https:\/\/coderzpy.com\/python\/string-functions-ii\/"}],"_links":{"self":[{"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/posts\/2110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/comments?post=2110"}],"version-history":[{"count":2,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/posts\/2110\/revisions"}],"predecessor-version":[{"id":2112,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/posts\/2110\/revisions\/2112"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/media\/2030"}],"wp:attachment":[{"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/media?parent=2110"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/categories?post=2110"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/coderzpy.com\/wp-json\/wp\/v2\/tags?post=2110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}