{"id":23320,"date":"2021-12-15T17:55:24","date_gmt":"2021-12-15T12:25:24","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=23320"},"modified":"2023-08-18T18:43:41","modified_gmt":"2023-08-18T13:13:41","slug":"python-capitalize-each-word-example-code","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/","title":{"rendered":"Python capitalize each word | Example code"},"content":{"rendered":"\n<p>Use<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-title-function-uppercase-first-character-of-the-word\/\"> the title() function<\/a> to capitalize each word in Python. Python&#8217;s Str class provides a function title(), it converts the first character of every word of a given string to upper case<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Example how to capitalize each word in Python <\/strong><\/h2>\n\n\n\n<p>Simple example code capitalizes the first character of each word in a string.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>txt = 'the brOwn Fox'\n\nres = txt.title()\n\nprint(res)\n<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"241\" height=\"117\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg?resize=241%2C117&#038;ssl=1\" alt=\"\" class=\"wp-image-23324\"\/><\/figure><\/div>\n\n\n<p><strong>Or<\/strong><\/p>\n\n\n\n<p>Use <a href=\"https:\/\/tutorial.eyehunts.com\/python\/capitalize-function-in-python-example-code\/\">capitalize() function<\/a> with a <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-join-function-join-strings\/\">join()<\/a> and <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-split-function-python-split-string\/\">split()<\/a> functions. Split into words, initial-cap each word from the split groups, and rejoin.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>txt = 'the brOwn Fox'\n\nres = \" \".join(w.capitalize() for w in txt.split())\n\n# OR use \n\n#res = ' '.join(w&#91;0].upper() + w&#91;1:] for w in s.split())\n\n\nprint(res)\n<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>: The Brown Fox<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Using a custom function:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def capitalize_each_word(input_string):\r\n    words = input_string.split()\r\n    capitalized_words = &#91;word.capitalize() for word in words]\r\n    return ' '.join(capitalized_words)\r\n\r\ninput_string = \"hello world\"\r\ncapitalized_string = capitalize_each_word(input_string)\r\nprint(capitalized_string)  # Output: Hello World\r<\/code><\/pre>\n\n\n\n<p>In the custom function approach, the <code>split()<\/code> method is used to split the input string into a list of words. Then, a list comprehension is used to capitalize each word, and finally, the <code>join()<\/code> method is used to combine the capitalized words back into a single string.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Comment if you have any doubts or suggestions on this Python capitalize topic.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note:<\/strong> IDE:&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.jetbrains.com\/pycharm\/\" target=\"_blank\">PyCharm<\/a>&nbsp;2021.3.3 (Community Edition)<\/p><p>Windows 10<\/p><p><strong>Python 3.10.1<\/strong><\/p><p>All<strong>&nbsp;Python Examples&nbsp;are in&nbsp;Python&nbsp;3<\/strong>, so Maybe its different from python 2 or upgraded versions.<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Use the title() function to capitalize each word in Python. Python&#8217;s Str class provides a function title(), it converts the first character of every word of a given string to upper case Example how to capitalize each word in Python Simple example code capitalizes the first character of each word in a string. Output: Or&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Python capitalize each word | Example code<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[30],"tags":[161,136],"post_series":[],"class_list":["post-23320","post","type-post","status-publish","format-standard","hentry","category-python","tag-python-capitalize","tag-python-code"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python capitalize each word | Example code<\/title>\n<meta name=\"description\" content=\"Use title() function to capitalize each word in Python. Python&#039;s Str class provides a function title(), it converts the first character of...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python capitalize each word | Example code\" \/>\n<meta property=\"og:description\" content=\"Use title() function to capitalize each word in Python. Python&#039;s Str class provides a function title(), it converts the first character of...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-15T12:25:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-18T13:13:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg\" \/>\n<meta name=\"author\" content=\"Rohit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rohit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\",\"name\":\"Python capitalize each word | Example code\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg\",\"datePublished\":\"2021-12-15T12:25:24+00:00\",\"dateModified\":\"2023-08-18T13:13:41+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"Use title() function to capitalize each word in Python. Python's Str class provides a function title(), it converts the first character of...\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg?fit=241%2C117&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg?fit=241%2C117&ssl=1\",\"width\":241,\"height\":117},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python capitalize each word | Example code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\",\"url\":\"https:\/\/tutorial.eyehunts.com\/\",\"name\":\"Tutorial\",\"description\":\"By EyeHunts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\",\"name\":\"Rohit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"contentUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"caption\":\"Rohit\"},\"description\":\"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.\",\"url\":\"https:\/\/tutorial.eyehunts.com\/author\/rohit\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python capitalize each word | Example code","description":"Use title() function to capitalize each word in Python. Python's Str class provides a function title(), it converts the first character of...","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:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/","og_locale":"en_US","og_type":"article","og_title":"Python capitalize each word | Example code","og_description":"Use title() function to capitalize each word in Python. Python's Str class provides a function title(), it converts the first character of...","og_url":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/","og_site_name":"Tutorial","article_published_time":"2021-12-15T12:25:24+00:00","article_modified_time":"2023-08-18T13:13:41+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/","url":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/","name":"Python capitalize each word | Example code","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg","datePublished":"2021-12-15T12:25:24+00:00","dateModified":"2023-08-18T13:13:41+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"Use title() function to capitalize each word in Python. Python's Str class provides a function title(), it converts the first character of...","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg?fit=241%2C117&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-capitalize-each-word.jpg?fit=241%2C117&ssl=1","width":241,"height":117},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-each-word-example-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"Python capitalize each word | Example code"}]},{"@type":"WebSite","@id":"https:\/\/tutorial.eyehunts.com\/#website","url":"https:\/\/tutorial.eyehunts.com\/","name":"Tutorial","description":"By EyeHunts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1","name":"Rohit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/","url":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","contentUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","caption":"Rohit"},"description":"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.","url":"https:\/\/tutorial.eyehunts.com\/author\/rohit\/"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":23311,"url":"https:\/\/tutorial.eyehunts.com\/python\/how-to-capitalize-the-first-letter-in-python-example-code\/","url_meta":{"origin":23320,"position":0},"title":"How to capitalize the first letter in Python | Example code","author":"Rohit","date":"December 15, 2021","format":false,"excerpt":"Use capitalize() method If you want to capitalize the only first letter of a given sentence in Python. This method returns a copy of the original string and converts the first character of the string to capital and the rest of all other characters in the string in lowercase letters.\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"How to capitalize the first letter in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/How-to-capitalize-the-first-letter-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23289,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-title-vs-capitalize-functions-difference\/","url_meta":{"origin":23320,"position":1},"title":"Python title vs capitalize functions | Difference","author":"Rohit","date":"December 15, 2021","format":false,"excerpt":"The difference between Python title vs capitalize functions is how they convert (return) a string. Where the title() function changes the first character in each word to Uppercase and the remaining characters to Lowercase in the string and returns a new string. str.title() And the capitalize() method converts the first\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python title vs capitalize functions","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Python-title-vs-capitalize-functions.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":23293,"url":"https:\/\/tutorial.eyehunts.com\/python\/capitalize-function-in-python-example-code\/","url_meta":{"origin":23320,"position":2},"title":"Capitalize() function in Python | Example code","author":"Rohit","date":"December 15, 2021","format":false,"excerpt":"Python Capitalize() function is used to convert the first character in uppercase, and the rest is lowercase. Actually, this method returns a copy of the original string with the first character of the string to a capital other characters in the string lowercase letters. string.capitalize() Note: It doesn't modify the\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Capitalize() function in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/12\/Capitalize-function-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":16653,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-the-first-letter-of-every-word-in-a-string-example-code\/","url_meta":{"origin":23320,"position":3},"title":"Python capitalize the first letter of every word in a string | Example code","author":"Rohit","date":"July 30, 2021","format":false,"excerpt":"Use title() to capitalize the first letter of every word in a string in python. Python Str class provides a member function title() which makes each word title cased in string. sample_text.title() It converts the first character of each word to upper case and all remaining characters of the word\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python capitalize the first letter of every word in a string","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Python-capitalize-the-first-letter-of-every-word-in-a-string.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":16663,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-capitalize-every-other-letter-example-code\/","url_meta":{"origin":23320,"position":4},"title":"Python capitalize every other letter | Example code","author":"Rohit","date":"July 17, 2021","format":false,"excerpt":"Using for loop you can capitalize every other letter in Python programming. Iterate over the given string and capitalize car every other char with the if condition. Add both types of char into the new string. Example capitalise every other letter in a string in Python Simple python example code\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python capitalize every other letter","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Python-capitalize-every-other-letter.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":16659,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-program-to-capitalize-the-first-and-last-letters-of-each-word-of-a-given-string\/","url_meta":{"origin":23320,"position":5},"title":"Write a python program to capitalize the first and last letters of each word of a given string","author":"Rohit","date":"July 17, 2021","format":false,"excerpt":"Example program to capitalize first and last letters of each word of a given string in Python. def capitalize_first_last_letters(str1): str1 = result = str1.title() result = \"\" for word in str1.split(): result += word[:-1] + word[-1].upper() + \" \" return result[:-1] print(capitalize_first_last_letters(\"python code and example\")) Output: Another Example Take input\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Python-program-to-convert-first-and-last-letter-of-string-to-UpperCase.gif?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Python-program-to-convert-first-and-last-letter-of-string-to-UpperCase.gif?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Python-program-to-convert-first-and-last-letter-of-string-to-UpperCase.gif?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23320","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/comments?post=23320"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23320\/revisions"}],"predecessor-version":[{"id":41771,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/23320\/revisions\/41771"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=23320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=23320"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=23320"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=23320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}