{"id":17228,"date":"2021-08-02T14:21:02","date_gmt":"2021-08-02T08:51:02","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=17228"},"modified":"2021-08-02T14:21:05","modified_gmt":"2021-08-02T08:51:05","slug":"python-print-integer-format-example-code","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/","title":{"rendered":"Python print integer format | Example code"},"content":{"rendered":"\n<p>Using the String modulo operator(%), you can easily format numbers (integer) and print in python.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\r# Old\nprint('%d' % (12,))\n\n# New\r\nprint('{:d}'.format(42))\r\n\r<\/code><\/pre>\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 Python print format integer<\/strong><\/h2>\n\n\n\n<p>The string modulo operator ( % ) is still available in Python(3.x) but nowadays the old style of formatting is removed from the language.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># print integer and float value\r\nprint(\"Number : %2d, Average : %5.2f\" % (1, 015.333))\r\n\r\n# print integer value\r\nprint(\"Total students : %3d, Boys : %2d\" % (40, 20))\r\n\r\n# print octal value\r\nprint(\"%7.3o\" % (50))\r\n\r\n# print exponential value\r\nprint(\"%10.3E\" % (778.08957))\r\n<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"431\" height=\"208\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg?resize=431%2C208&#038;ssl=1\" alt=\"Python print integer format\" class=\"wp-image-17404\"\/><\/figure><\/div>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Formatting integer (Number) using the format method<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># combining positional and keyword arguments\r\nprint('Number {0}, {1}, and {other}.'\r\n      .format(111, 222, other=333))\r\n\r\n# using format() method with number\r\nprint(\"Number :{0:2d}, And :{1:8.2f}\".\r\n      format(2, 00.795))\r\n\r\n# Changing positional argument\r\nprint(\"Second: {1:3d}, First: {0:7.2f}\".\r\n      format(47.42, 11))\r\n\r\nprint(\"Total: {a:5d},  Avg: {p:8.2f}\".\r\n      format(a=453, p=59.058))<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"515\" height=\"202\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Formatting-integer-Number-using-the-format-method.jpg?resize=515%2C202&#038;ssl=1\" alt=\"Formatting integer (Number) using the format method\" class=\"wp-image-17408\"\/><\/figure><\/div>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Do comment if you have any doubts and suggestions on this Python int 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>Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Example Python print format integer The string modulo operator ( % ) is still available in Python(3.x) but nowadays the old style of formatting is removed from the language. Output: Formatting integer (Number) using the format method Output: Do comment&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Python print integer format | 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":[158,163],"post_series":[],"class_list":["post-17228","post","type-post","status-publish","format-standard","hentry","category-python","tag-python-integer","tag-python-print"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python print integer format | Example code - EyeHunts<\/title>\n<meta name=\"description\" content=\"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the\" \/>\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-print-integer-format-example-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python print integer format | Example code - EyeHunts\" \/>\n<meta property=\"og:description\" content=\"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-02T08:51:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-02T08:51:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/\",\"name\":\"Python print integer format | Example code - EyeHunts\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg\",\"datePublished\":\"2021-08-02T08:51:02+00:00\",\"dateModified\":\"2021-08-02T08:51:05+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg?fit=431%2C208&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg?fit=431%2C208&ssl=1\",\"width\":431,\"height\":208},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python print integer format | 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=1777979855\",\"contentUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777979855\",\"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 print integer format | Example code - EyeHunts","description":"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the","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-print-integer-format-example-code\/","og_locale":"en_US","og_type":"article","og_title":"Python print integer format | Example code - EyeHunts","og_description":"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the","og_url":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/","og_site_name":"Tutorial","article_published_time":"2021-08-02T08:51:02+00:00","article_modified_time":"2021-08-02T08:51:05+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/","url":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/","name":"Python print integer format | Example code - EyeHunts","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg","datePublished":"2021-08-02T08:51:02+00:00","dateModified":"2021-08-02T08:51:05+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"Using the String modulo operator(%), you can easily format numbers (integer) and print in python. Formatting integer (Number) using the","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg?fit=431%2C208&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/08\/Python-print-integer-format.jpg?fit=431%2C208&ssl=1","width":431,"height":208},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-print-integer-format-example-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"Python print integer format | 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=1777979855","contentUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777979855","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":17201,"url":"https:\/\/tutorial.eyehunts.com\/python\/print-integer-python-example-code\/","url_meta":{"origin":17228,"position":0},"title":"Print integer Python | Example code","author":"Rohit","date":"July 28, 2021","format":false,"excerpt":"To Print an integer in python simply pass the value in the print() function. It will output data from any Python program. a = 10 print(a) # addition print(5 + 10) Output: 1015 How to print a string and an integer in Python Use comma or string casting to print()\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Print integer Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/07\/Print-integer-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":33955,"url":"https:\/\/tutorial.eyehunts.com\/python\/division-operators-in-python\/","url_meta":{"origin":17228,"position":1},"title":"Division Operators in Python","author":"Rohit","date":"November 9, 2022","format":false,"excerpt":"Python has two types of division operators. Both allow you to divide two numbers and return a quotient, i.e., the first number (number at the left) is divided by the second number (number at the right) and returns the quotient. \/: Divides the number and returns a floating point value.\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\/2022\/11\/Division-Operators-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/11\/Division-Operators-in-Python.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/11\/Division-Operators-in-Python.jpg?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":34384,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-f-string-format-integer\/","url_meta":{"origin":17228,"position":2},"title":"Python f-string format integer","author":"Rohit","date":"November 24, 2022","format":false,"excerpt":"Python f-string format also allows you to display an integer in different bases. The f-strings have the f prefix and use {} brackets to evaluate values. Python f-string format integer Simple example code. age = 100 print('%d years old' % (age)) print('{} years old'.format(age)) print(f'{age} years old') Output: Python f-string\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python f-string format integer","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/11\/Python-f-string-format-integer.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":22327,"url":"https:\/\/tutorial.eyehunts.com\/python\/convert-int-to-string-python-example-code\/","url_meta":{"origin":17228,"position":3},"title":"Convert int to string Python | Example code","author":"Rohit","date":"November 16, 2021","format":false,"excerpt":"Use the built-in str() function to convert int to string in Python. The str() function takes in any data type and converts it into a string object. str(integer_value) Example how to convert int to string Python A simple example code converts int to str in Python. Just pass the int\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Convert int to string Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Convert-int-to-string-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":34059,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-chr-function\/","url_meta":{"origin":17228,"position":4},"title":"Python chr() Function","author":"Rohit","date":"November 14, 2022","format":false,"excerpt":"Python chr() Function is used to convert an integer to its Unicode character. This function returns a string from a Unicode code integer. chr(number) number: An integer representing a valid Unicode code point ValueError - for an out-of-range integer number TypeError - for a non-integer argument Python chr() Simple example\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python chr() Function","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/11\/Python-chr-Function.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":17230,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-string-format-integer-example-code\/","url_meta":{"origin":17228,"position":5},"title":"Python string format integer | Example code","author":"Rohit","date":"November 8, 2021","format":false,"excerpt":"Python's new-style formatting allows for rearranging the order of display without changing the arguments. Of course, it is also possible to format integers (numbers). Python string format integer example Simple example code. # old print('%d' % (100,)) # New print('{:d}'.format(100)) Output: Format string to integer with leading zero Python res\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python string format integer","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/11\/Python-string-format-integer.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/17228","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=17228"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/17228\/revisions"}],"predecessor-version":[{"id":17409,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/17228\/revisions\/17409"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=17228"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=17228"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=17228"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=17228"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}