{"id":12843,"date":"2023-06-02T09:01:02","date_gmt":"2023-06-02T09:01:02","guid":{"rendered":"https:\/\/www.webhozz.com\/blog\/?p=12843"},"modified":"2023-06-09T11:12:13","modified_gmt":"2023-06-09T11:12:13","slug":"format-string-pada-python","status":"publish","type":"post","link":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/","title":{"rendered":"Format String Pada Python"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Untuk membuktikan apakah string yang akan ditampilkan seperti yang diharapkan, kita dapat memformat hasilnya dengan&nbsp;metode&nbsp;<code>format()&nbsp;<\/code>ini.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Format string ()<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Metode&nbsp;<code>format()&nbsp;<\/code>memungkinkan kamu untuk format yang dipilih dari bagian string.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Terkadang ada bagian teks yang tidak kamu control, mungkin berasal dari basis data, atau input pengguna?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Untuk mengontrol nilai-nilai tersebut, tambahkan placeholder (kurung keriting&nbsp;<code>{}<\/code>) dalam teks, dan jalankan nilai melalui&nbsp;metode<code>&nbsp;format()<\/code>:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Tambahkan placeholder di tempat yang kamu ingin menampilkan harga:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nprice = 49\ntxt = &quot;The price is {} dollars&quot;\nprint(txt.format(price))\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Kamu dapat menambahkan parameter di dalam kurung keriting untuk menentukan cara mengkonversi nilai:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Format harga yang akan ditampilkan sebagai angka dengan dua desimal:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\ntxt = &quot;The price is {:.2f} dollars&quot;\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Kelipatan Nilai<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Jika kamu ingin menggunakan lebih banyak nilai, tambahkan saja nilai lebih ke metode format ():<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nprint(txt.format(price, itemno, count))\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Dan tambahkan lebih banyak placeholders:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nquantity = 3\nitemno = 567\nprice = 49\nmyorder = &quot;I want {} pieces of item number {} for {:.2f} dollars.&quot;\nprint(myorder.format(quantity, itemno, price))\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Angka Indeks<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Kamu dapat menggunakan nomor indeks (angka di dalam kurung keriting&nbsp;<code>{0}<\/code>) untuk memastikan nilai ditempatkan di placeholder yang benar:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nquantity = 3\nitemno = 567\nprice = 49\nmyorder = &quot;I want {0} pieces of item number {1} for {2:.2f} dollars.&quot;\nprint(myorder.format(quantity, itemno, price))\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Juga, jika kmau ingin merujuk ke nilai yang sama lebih dari sekali, gunakan nomor indeks:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nage = 36\nname = &quot;John&quot;\ntxt = &quot;His name is {1}. {1} is {0} years old.&quot;\nprint(txt.format(age, name))\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Nama Indeks<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Kamu juga dapat menggunakan nama index dengan memasukkan nama di dalam kurung keriting&nbsp;<code>{carname}<\/code>, tetapi kemudian kmau harus menggunakan nama saat kamu melewati nilai parameter&nbsp;<code>txt.format(carname = \"Ford\")<\/code>:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Contoh<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nmyorder = &quot;I have a {carname}, it is a {model}.&quot;\nprint(myorder.format(carname = &quot;Ford&quot;, model = &quot;Mustang&quot;))\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Untuk membuktikan apakah string yang akan ditampilkan seperti yang diharapkan, kita dapat memformat hasilnya dengan&nbsp;metode&nbsp;format()&nbsp;ini. Format string () Metode&nbsp;format()&nbsp;memungkinkan kamu untuk format yang dipilih dari<\/p>\n","protected":false},"author":1,"featured_media":10067,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2718],"tags":[4517,4516,4514,4518,4513,4515],"class_list":["post-12843","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-belajar-python","tag-belajar-python-format-string","tag-belajar-python-format-string-pemula","tag-kursus-python-format-string-bandung","tag-kursus-python-format-string-jakarta","tag-tutorial-python-format-string","tag-tutorial-python-format-string-pemula"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Format String Pada Python - WebHozz Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Format String Pada Python - WebHozz Blog\" \/>\n<meta property=\"og:description\" content=\"Untuk membuktikan apakah string yang akan ditampilkan seperti yang diharapkan, kita dapat memformat hasilnya dengan&nbsp;metode&nbsp;format()&nbsp;ini. Format string () Metode&nbsp;format()&nbsp;memungkinkan kamu untuk format yang dipilih dari\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHozz Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-02T09:01:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-09T11:12:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/person\\\/d5f539ad171dc74baaf6a98dfef6fcef\"},\"headline\":\"Format String Pada Python\",\"datePublished\":\"2023-06-02T09:01:02+00:00\",\"dateModified\":\"2023-06-09T11:12:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/\"},\"wordCount\":192,\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Python.jpg\",\"keywords\":[\"Belajar Python Format String\",\"Belajar Python Format String Pemula\",\"Kursus Python Format String Bandung\",\"Kursus Python Format String Jakarta\",\"Tutorial Python Format String\",\"Tutorial Python Format String Pemula\"],\"articleSection\":[\"Belajar Python\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/\",\"name\":\"Format String Pada Python - WebHozz Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Python.jpg\",\"datePublished\":\"2023-06-02T09:01:02+00:00\",\"dateModified\":\"2023-06-09T11:12:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Python.jpg\",\"contentUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Python.jpg\",\"width\":750,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/format-string-pada-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Format String Pada Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\",\"name\":\"WebHozz Blog\",\"description\":\"Kursus Web &amp; Android di Jakarta Bandung\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\",\"name\":\"WebHozz\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo-persegi.jpg\",\"contentUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo-persegi.jpg\",\"width\":442,\"height\":442,\"caption\":\"WebHozz\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/person\\\/d5f539ad171dc74baaf6a98dfef6fcef\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Format String Pada Python - WebHozz Blog","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:\/\/www.webhozz.com\/blog\/format-string-pada-python\/","og_locale":"en_US","og_type":"article","og_title":"Format String Pada Python - WebHozz Blog","og_description":"Untuk membuktikan apakah string yang akan ditampilkan seperti yang diharapkan, kita dapat memformat hasilnya dengan&nbsp;metode&nbsp;format()&nbsp;ini. Format string () Metode&nbsp;format()&nbsp;memungkinkan kamu untuk format yang dipilih dari","og_url":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/","og_site_name":"WebHozz Blog","article_published_time":"2023-06-02T09:01:02+00:00","article_modified_time":"2023-06-09T11:12:13+00:00","og_image":[{"width":750,"height":400,"url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#article","isPartOf":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/"},"author":{"name":"admin","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/person\/d5f539ad171dc74baaf6a98dfef6fcef"},"headline":"Format String Pada Python","datePublished":"2023-06-02T09:01:02+00:00","dateModified":"2023-06-09T11:12:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/"},"wordCount":192,"publisher":{"@id":"https:\/\/www.webhozz.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg","keywords":["Belajar Python Format String","Belajar Python Format String Pemula","Kursus Python Format String Bandung","Kursus Python Format String Jakarta","Tutorial Python Format String","Tutorial Python Format String Pemula"],"articleSection":["Belajar Python"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/","url":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/","name":"Format String Pada Python - WebHozz Blog","isPartOf":{"@id":"https:\/\/www.webhozz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#primaryimage"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg","datePublished":"2023-06-02T09:01:02+00:00","dateModified":"2023-06-09T11:12:13+00:00","breadcrumb":{"@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#primaryimage","url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg","contentUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/11\/Python.jpg","width":750,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhozz.com\/blog\/format-string-pada-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhozz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Format String Pada Python"}]},{"@type":"WebSite","@id":"https:\/\/www.webhozz.com\/blog\/#website","url":"https:\/\/www.webhozz.com\/blog\/","name":"WebHozz Blog","description":"Kursus Web &amp; Android di Jakarta Bandung","publisher":{"@id":"https:\/\/www.webhozz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhozz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhozz.com\/blog\/#organization","name":"WebHozz","url":"https:\/\/www.webhozz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2018\/04\/logo-persegi.jpg","contentUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2018\/04\/logo-persegi.jpg","width":442,"height":442,"caption":"WebHozz"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/person\/d5f539ad171dc74baaf6a98dfef6fcef","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.webhozz.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12843","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/comments?post=12843"}],"version-history":[{"count":2,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12843\/revisions"}],"predecessor-version":[{"id":12852,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12843\/revisions\/12852"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/media\/10067"}],"wp:attachment":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/media?parent=12843"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/categories?post=12843"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/tags?post=12843"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}