{"id":100252,"date":"2026-02-05T16:53:07","date_gmt":"2026-02-05T11:23:07","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=100252"},"modified":"2026-03-08T19:40:20","modified_gmt":"2026-03-08T14:10:20","slug":"f-strings-in-python","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/f-strings-in-python\/","title":{"rendered":"Understanding f-Strings in Python (Simple &amp; Clear)"},"content":{"rendered":"\n<p><strong>Python <\/strong>is not a<strong> syntax-heavy language<\/strong>, which makes it easier for developers to write programs without getting stuck in complex code structures. However, if standard practices are not followed, it can lead to performance issues, security loopholes, and maintenance problems.<\/p>\n\n\n\n<p>To avoid these technical hurdles during product development, programmers implement several methods, and <strong>f-strings<\/strong> are one of them.<\/p>\n\n\n\n<p>Now, let\u2019s move forward with our blog and gain a better understanding of this particular method.<\/p>\n\n\n\n<p><strong><em>Quick Answer:<\/em><\/strong><\/p>\n\n\n\n<p>An <strong>f-string<\/strong> is a string that allows you to include values or expressions directly within the curly braces <strong>{}<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>f-string in Python: Definition and Its Usage<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-1200x630.png\" alt=\"\" class=\"wp-image-103260\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/f-string-in-Python_-Definition-and-Its-Usage-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>In <strong><a href=\"https:\/\/www.guvi.in\/blog\/what-is-python-used-for\/\">Python<\/a><\/strong>, an<strong> f-string <\/strong>(formatted string literal) is a way to create <strong>dynamic strings<\/strong> that can include variables or expressions directly within curly braces <strong>{}<\/strong>. There are several applications of this method, such as displaying messages, performing calculations, or presenting dynamic data in a readable format.<\/p>\n\n\n\n<p>There is a clear purpose behind the implementation of f-strings in Python: to make code more organized and cleaner, helping<a href=\"https:\/\/www.guvi.in\/blog\/how-to-become-a-software-developer\/\" target=\"_blank\" rel=\"noreferrer noopener\"> <strong>developers<\/strong><\/a> avoid long, confusing string concatenations and minimize errors during output formatting.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Using f-Strings in Python<\/strong><\/h3>\n\n\n\n<p>To use an f-string, add an <strong>f<\/strong> or <strong>F<\/strong> before the string literal. Once done, put the required<a href=\"https:\/\/www.guvi.in\/blog\/do-you-know-how-to-create-variables-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"> <strong>variables<\/strong><\/a> or expressions inside the curly braces<strong> {} <\/strong>so that their values get included in the string.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>name = &#8220;Abhishek&#8221;<\/p>\n\n\n\n<p>age = 25<\/p>\n\n\n\n<p>print(f&#8221;My name is {name}, and I am {age} years old.&#8221;)&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># Output: My name is Abhishek, and I am 25 years old.<\/strong><\/p>\n\n\n\n<p><strong><em>Check out our free Python resource, which comprehensively covers essential topics and offers practical insights to enhance your learning<\/em>:<\/strong><a href=\"https:\/\/www.guvi.in\/mlp\/python-ebook?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Understanding+f-Strings+in+Python+%28Simple+%26+Clear%29\" target=\"_blank\" rel=\"noreferrer noopener\"><strong> Python eBook<\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Important Examples of f-Strings in Python<\/strong><\/h2>\n\n\n\n<p>The following are the best practical examples that will guide you to understand how f-strings actually make your Python code more readable.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Basic Variable Insertion<\/strong><\/h3>\n\n\n\n<p>This is the simplest use case for the f-string method. You simply need to put the variable name inside curly braces <strong>{}<\/strong>, which will include its value in the string. This way, you can easily combine text and data without using string concatenation (<strong>+<\/strong>), such as the <strong>format()<\/strong> function.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>name = &#8220;Stephen&#8221;<\/p>\n\n\n\n<p>age = 16<\/p>\n\n\n\n<p>print(f&#8221;My name is {name}, and I am {age} years old.&#8221;)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># Output: My name is Stephen, and I am 16 years old.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Expressions Inside f-Strings<\/strong><\/h3>\n\n\n\n<p>f-String also allows you to perform <strong><a href=\"https:\/\/en.wikipedia.org\/wiki\/Computational_mathematics\" target=\"_blank\" rel=\"noopener\">mathematical computations<\/a><\/strong> inside the string literals. For performing any calculation, you have to put the specific expression inside <strong>{}<\/strong>. Python will process the input and attach it to the string automatically.\u00a0\u00a0<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>a = 5<\/p>\n\n\n\n<p>b = 10<\/p>\n\n\n\n<p>print(f&#8221;Sum of {a} and {b} is {a + b}&#8221;)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># Output: Sum of 5 and 10 is 15<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Using f-Strings with Functions<\/strong><\/h3>\n\n\n\n<p>It is one of the powerful features that f-string offers; you can also <strong>call or invoke the<\/strong><a href=\"https:\/\/www.guvi.in\/blog\/what-is-function-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong> function<\/strong><\/a> inside<strong> {}<\/strong>, and the returned output will get included in the string. This method is especially useful when displaying dynamic results directly in string data types.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>def greet():<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;return &#8220;Hello&#8221;<\/p>\n\n\n\n<p>name = &#8220;Abhishek&#8221;<\/p>\n\n\n\n<p>print(f&#8221;{greet()}, {name}!&#8221;)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># Output: Hello, Abhishek!<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Formatting Numbers<\/strong><\/h3>\n\n\n\n<p>This specific example helps you to control the appearance of the numbers in the<a href=\"https:\/\/www.guvi.in\/blog\/what-is-a-string-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"> <strong>string<\/strong><\/a>. Modifiers such as .<strong>2f<\/strong> or <strong>:,<\/strong> are used to round off decimals, add thousand separators, or align numbers in a readable format.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>pi = 3.14159<\/p>\n\n\n\n<p>money = 1000000<\/p>\n\n\n\n<p>print(f&#8221;Pi rounded: {pi:.2f}&#8221;)&nbsp; &nbsp; &nbsp; <strong># Output: Pi rounded: 3.14<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Money: {money:,}&#8221;) &nbsp; &nbsp; &nbsp; &nbsp; <strong>&nbsp;# Output: Money: 1,000,000<\/strong><\/p>\n\n\n\n<p><strong>Note:<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>.2f <\/strong>modifier rounds the number to 2 decimal places for displaying clean output.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>:, <\/strong>modifier adds commas in large numbers to separate the thousands.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Date and Time Formatting<\/strong><\/h3>\n\n\n\n<p>With f-strings, you can also insert datetime objects inside the string data type, and format them using placeholders <strong>{}<\/strong>. Using the following format codes<strong> (%B, %d, %Y)<\/strong> displays dates or times in a readable format.<\/p>\n\n\n\n<p><strong>Note:<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>%B <\/strong>\u2192 Full month name (e.g., February)<\/li>\n\n\n\n<li><strong>%d <\/strong>\u2192 Day of the month (01\u201331)<\/li>\n\n\n\n<li><strong>%Y<\/strong> \u2192 4-digit year (e.g., 2026)<\/li>\n<\/ul>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>from datetime import datetime<\/p>\n\n\n\n<p>now = datetime.now()<\/p>\n\n\n\n<p>print(f&#8221;Today is {now:%B %d, %Y}&#8221;)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># Output: Today is February 03, 2026<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>6. Nested f-Strings<\/strong><\/h3>\n\n\n\n<p>This is a more complex structure than the previous ones here; an f-string can contain another f-string within <strong>{}<\/strong> to handle dynamic content. This ensures readability when building sophisticated strings.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>names = [&#8220;Abhishek&#8221;, &#8220;Maya&#8221;, &#8220;Rohan&#8221;]<\/p>\n\n\n\n<p>messages = [f&#8221;{f&#8217;Hello, {name}&#8217;}! Welcome to our platform.&#8221; for name in names]<\/p>\n\n\n\n<p>for msg in messages:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(msg)<\/p>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>Hello, Abhishek! Welcome to our platform.<\/p>\n\n\n\n<p>Hello, Maya! Welcome to our platform.<\/p>\n\n\n\n<p>Hello, Rohan! Welcome to our platform.<\/p>\n\n\n\n<p><strong><em>Explanation:<\/em><\/strong><\/p>\n\n\n\n<p>This code creates a personalized welcome message for each name in the list. The inner f-string <strong>f&#8217;Hello, {name}&#8217;<\/strong> adds the name, and the outer f-string adds extra text.&nbsp;<\/p>\n\n\n\n<p>The loop iterates over each name, creating a message for each and storing it in the list. Using f-strings here makes it easy to build dynamic messages without writing long, messy string concatenations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>7. Additional Formatting Types<\/strong><\/h3>\n\n\n\n<ul>\n<li><strong>.3f<\/strong> \u2013 Rounds a float to 3 decimal places<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>:&gt;10<\/strong> \u2013 Right-aligns text in 10 spaces<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>:&lt;10<\/strong> \u2013 Left-aligns text in 10 spaces<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>:^10<\/strong> \u2013 Centers text in 10 spaces<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>:+<\/strong> \u2013 Shows a plus or minus sign for numbers<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>:%<\/strong> \u2013 Converts a number to a percentage<\/li>\n<\/ul>\n\n\n\n<p><strong>Explore more modifiers:<\/strong><a href=\"https:\/\/www.w3schools.com\/python\/python_string_formatting.asp\" target=\"_blank\" rel=\"noreferrer noopener nofollow\"><strong> <em>Python String Formatting<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Mistakes to Avoid When Using f-Strings in Python<\/strong><\/h2>\n\n\n\n<p>Learn the most common pitfalls to prevent errors and implement f-strings correctly every time:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Using quotes incorrectly inside curly braces<\/strong><\/h3>\n\n\n\n<p>When you put the quotes inside <strong>{}<\/strong>, Python treats the contents as a string; you&#8217;re writing the string rather than inserting the value of a variable. That&#8217;s why it produces an incorrect output, as the variable was never actually inside the string literals.&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>name = &#8220;Abhishek&#8221;<\/p>\n\n\n\n<p>print(f&#8221;My name is {&#8216;name&#8217;}&#8221;)&nbsp; <strong># <\/strong>\u274c<strong>Wrong way<\/strong><\/p>\n\n\n\n<p>print(f&#8221;My name is {name}&#8221;)&nbsp; &nbsp; <strong># <\/strong>\u2705<strong>Correct way<\/strong><\/p>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>My name is name<\/p>\n\n\n\n<p>My name is Abhishek<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Trying to modify variables directly inside f-strings<\/strong><\/h3>\n\n\n\n<p>Whenever you are implementing f-strings, always remember that this particular method is meant only for displaying values, not for updating them directly inside it. If you attempt to modify or alter a variable inside an f-string, it will throw an error.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>count = 5<\/p>\n\n\n\n<p>print(f&#8221;Next count is {count + 1}&#8221;) &nbsp; &nbsp; <strong>#<\/strong>\u2705<strong> Correct, just shows the calculation<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Next count is {count += 1}&#8221;)&nbsp; &nbsp; <strong>&nbsp;#<\/strong>\u274c<strong> Wrong, this will cause an error<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Putting comments or invalid code inside {}<\/strong><\/h3>\n\n\n\n<p>Every time you create a f-string, be aware of the content you put inside the <strong>{}<\/strong>; it must be a valid expression. Elements such as comments, incomplete expressions, or invalid code statements will lead to syntax errors, which will eventually break your code.<\/p>\n\n\n\n<p><strong><em>Example-1 (with comments):<\/em><\/strong><\/p>\n\n\n\n<p>name = &#8220;Abhishek&#8221;<\/p>\n\n\n\n<p><strong># <\/strong>\u274c<strong>Wrong method<\/strong><\/p>\n\n\n\n<p>print(f&#8221;My name is {name # comment}&#8221;) &nbsp; &nbsp; <strong>&nbsp;# SyntaxError<\/strong><\/p>\n\n\n\n<p><strong>#<\/strong>\u2705<strong>Correct method<\/strong><\/p>\n\n\n\n<p>print(f&#8221;My name is {name}&#8221;) &nbsp; &nbsp; <strong># Comment is outside<\/strong><\/p>\n\n\n\n<p><strong><em>Example-2 (invalid code):<\/em><\/strong><\/p>\n\n\n\n<p>x = 5<\/p>\n\n\n\n<p><strong># Invalid inside f-string<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Value is {x + }&#8221;)&nbsp; &nbsp; &nbsp; <strong># SyntaxError, incomplete expression<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Value is {if x&gt;3:1}&#8221;) <strong># SyntaxError, statements not allowed<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Value is {x \/\/}&#8221;)&nbsp; &nbsp; &nbsp; <strong># SyntaxError, incomplete operator<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Using complex expressions that make the f-string hard to read<\/strong><\/h3>\n\n\n\n<p>Placing long or complex calculations inside an f-string makes the code confusing. It is better to calculate values separately and keep f-strings simple for readability.<\/p>\n\n\n\n<p><strong><em>Example:<\/em><\/strong><\/p>\n\n\n\n<p>num1 = 5<\/p>\n\n\n\n<p>num2 = 10<\/p>\n\n\n\n<p><strong># \u274cHard to read<\/strong><\/p>\n\n\n\n<p>print(f&#8221;Result: {(num1**2 + num2**2)**0.5 \/ (num1*num2) * (num1+num2)}&#8221;)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong># \u2705Better<\/strong><\/p>\n\n\n\n<p>result = (num1**2 + num2**2)**0.5 \/ (num1*num2) * (num1+num2)<\/p>\n\n\n\n<p>print(f&#8221;Result: {result}&#8221;)<\/p>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>Result: 0.565685424949238<\/p>\n\n\n\n<p>Aspiring for a fulfilling Python career, wait no further, get<strong> HCL GUVI<\/strong>&#8216;s Python combo course that covers everything from foundational concepts to advanced applications:<a href=\"https:\/\/www.guvi.in\/courses\/bundles\/100-days-of-python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Understanding+f-Strings+in+Python+%28Simple+%26+Clear%29\" target=\"_blank\" rel=\"noreferrer noopener\"> <strong>100 Days of Python Bundle<\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p><strong>f-strings<\/strong> make string formatting in <strong>Python<\/strong> simple and readable. They help insert values and formatted data easily while keeping the code clean. By using them correctly and avoiding common mistakes, you can write clearer and more maintainable Python code. Overall, f-strings improve both coding speed and readability.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1770209331452\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Do f-strings work in all Python versions?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No, f-strings are supported only in Python 3.6 and later versions.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209345598\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Can we use expressions and functions inside f-strings?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, f-strings allow expressions and function calls inside {} as long as they return a value.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209365271\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Are f-strings better than format() and % formatting?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, f-strings are more readable, shorter, and easier to write compared to older formatting methods.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Python is not a syntax-heavy language, which makes it easier for developers to write programs without getting stuck in complex code structures. However, if standard practices are not followed, it can lead to performance issues, security loopholes, and maintenance problems. To avoid these technical hurdles during product development, programmers implement several methods, and f-strings are [&hellip;]<\/p>\n","protected":false},"author":64,"featured_media":103257,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"443","authorinfo":{"name":"Abhishek Pati","url":"https:\/\/www.guvi.in\/blog\/author\/abhishek-pati\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Understanding-f-Strings-in-Python-Simple-Clear-300x116.png","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Understanding-f-Strings-in-Python-Simple-Clear.png","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100252"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/64"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=100252"}],"version-history":[{"count":5,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100252\/revisions"}],"predecessor-version":[{"id":103262,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100252\/revisions\/103262"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/103257"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=100252"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=100252"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=100252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}