{"id":99143,"date":"2026-01-21T17:02:51","date_gmt":"2026-01-21T11:32:51","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=99143"},"modified":"2026-01-21T17:02:52","modified_gmt":"2026-01-21T11:32:52","slug":"what-are-python-loops","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-are-python-loops\/","title":{"rendered":"Master Python Loops in One Hour: From Basics to Nested Loops"},"content":{"rendered":"\n<p>Loops in Python allow you to execute code blocks multiple times efficiently, making repetitive tasks simpler and your code more elegant. When you&#8217;re working on any programming project, you&#8217;ll frequently need to perform the same action on different items or repeat operations until certain conditions are met.<\/p>\n\n\n\n<p>Python offers two main types of loops: for loops and while loops. For loops are used for iterating over sequences like lists, tuples, dictionaries, sets, or strings without requiring an indexing variable. While loops, on the other hand, execute a block of code repeatedly as long as a specific condition remains true. <\/p>\n\n\n\n<p>In this comprehensive guide, you&#8217;ll learn everything from basic loop structures to advanced nested loops, all designed to help you automate repetitive tasks in your Python programs.<\/p>\n\n\n\n<p><strong>Quick Answer:<\/strong><\/p>\n\n\n\n<p>In Python, loops are control structures that repeatedly execute a block of code, helping you automate repetitive tasks efficiently using <code>for<\/code> and <code>while<\/code> loops.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is a Loop in Python?<\/strong><\/h2>\n\n\n\n<p>A loop in <a href=\"https:\/\/www.guvi.in\/hub\/python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> is a programming construct that allows a block of code to be executed repeatedly until a specific condition is met. Fundamentally, loops are designed to automate repetitive tasks, making your code more efficient and concise.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1) Why are Loops Used in Programming?<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/hub\/python-tutorial\/looping\/\" target=\"_blank\" rel=\"noreferrer noopener\">Loops<\/a> simplify complex problems by enabling code reusability. Instead of writing the same code multiple times, you can wrap it in a loop structure that executes the code block as many times as needed. This approach offers several benefits:<\/p>\n\n\n\n<ul>\n<li><strong>Time efficiency: <\/strong>Loops automate repetitive tasks, reducing development time<\/li>\n\n\n\n<li><strong>Code organization: <\/strong>They help avoid duplicate code, improving readability<\/li>\n\n\n\n<li><strong>Data processing:<\/strong> Loops enable efficient traversal through data structures like arrays or linked lists<\/li>\n\n\n\n<li><strong>Dynamic handling:<\/strong> They allow your program to process varying amounts of data without code modifications<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2) Types of Loops in Python<\/strong><\/h3>\n\n\n\n<p>Python primarily supports two main types of loops:<\/p>\n\n\n\n<ol>\n<li><a href=\"https:\/\/www.guvi.in\/hub\/python\/for-loop-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>For loops<\/strong><\/a><strong>:<\/strong> These iterate over sequences (lists, tuples, dictionaries, sets, or strings). The for loop is entry-controlled, meaning the test condition is checked before entering the loop body. It&#8217;s particularly useful when the number of iterations is known beforehand.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.guvi.in\/hub\/python\/while-loop-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>While loops<\/strong><\/a><strong>:<\/strong> These execute a block of code repeatedly as long as a specified condition remains true. Like for loops, while loops are also entry-controlled. They continue running until the condition becomes false.<\/li>\n<\/ol>\n\n\n\n<p>Python also supports nested loops &#8211; loops inside other loops. These are valuable when working with multi-dimensional data or creating complex patterns.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3) When to Use Python Loops<\/strong><\/h3>\n\n\n\n<p>Choosing the right loop depends on your specific requirements:<\/p>\n\n\n\n<ul>\n<li>Use Python for loops when you know the exact number of iterations in advance. They&#8217;re ideal for iterating through sequences or performing an action a specific number of times. For loops are also less prone to errors because Python handles the iteration mechanics.<\/li>\n\n\n\n<li>Use Python while loops when the number of iterations isn&#8217;t known beforehand. They&#8217;re more flexible and suitable for situations where you need to continue until a specific condition changes. However, you must be careful to avoid infinite loops by ensuring the condition eventually becomes false.<\/li>\n<\/ul>\n\n\n\n<p>Loop control statements like break (exit a loop), continue (skips to the next iteration), and pass (placeholder) give you additional control over loop execution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding for Loops in Python<\/strong><\/h2>\n\n\n\n<p>The for loop in <a href=\"https:\/\/www.guvi.in\/blog\/reasons-why-you-should-learn-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> differs from loops in other languages by focusing on iteration over sequences rather than index manipulation. This makes Python loops more intuitive and less prone to errors.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1) Basic Syntax of a for Python Loop<\/strong><\/h3>\n\n\n\n<p>The basic structure of a for loop is straightforward:<\/p>\n\n\n\n<p>for variable in iterable:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;<em># Code to execute for each item<\/em><\/p>\n\n\n\n<p>In this syntax, the &#8220;variable&#8221; temporarily holds each item from the &#8220;iterable&#8221; (like a list or string) during each iteration. The indented code block executes once for each item in the sequence.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2) Looping Through Lists, Tuples, and Strings<\/strong><\/h3>\n\n\n\n<p>For loops excel at processing sequence data types. For instance:<\/p>\n\n\n\n<p><em># Looping through a list<\/em><\/p>\n\n\n\n<p>colors = [&#8220;red&#8221;, &#8220;green&#8221;, &#8220;blue&#8221;]<\/p>\n\n\n\n<p>for color in colors:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(color)<\/p>\n\n\n\n<p><em># Looping through a string<\/em><\/p>\n\n\n\n<p>for character in &#8220;Python&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(character)<\/p>\n\n\n\n<p>Initially, Python assigns the first item to the loop variable, executes the code block, then continues with each subsequent item until the sequence is exhausted.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3) Using range() in for Python Loops<\/strong><\/h3>\n\n\n\n<p>The range() function generates a sequence of numbers, making it perfect for counting operations:<\/p>\n\n\n\n<p><em># Prints 0 to 4<\/em><\/p>\n\n\n\n<p>for i in range(5):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(i)<\/p>\n\n\n\n<p>Notably, range() accepts up to three parameters:<\/p>\n\n\n\n<ul>\n<li>range(stop): Generates numbers from 0 to stop-1<\/li>\n\n\n\n<li>range(start, stop): Generates numbers from start to stop-1<\/li>\n\n\n\n<li>range(start, stop, step): Generates numbers from start to stop-1, incrementing by step<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4) Using else with for Loops<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.python.org\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Python<\/a> uniquely allows an else clause with for loops:<\/p>\n\n\n\n<p>for x in range(3):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(x)<\/p>\n\n\n\n<p>else:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(&#8220;Loop completed normally&#8221;)<\/p>\n\n\n\n<p>To clarify, the else block executes only if the loop completes without encountering a break statement. This feature is particularly useful for search operations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5) Looping with Index Using range(len())<\/strong><\/h3>\n\n\n\n<p>To access both the index and value during iteration:<\/p>\n\n\n\n<p>fruits = [&#8220;apple&#8221;, &#8220;banana&#8221;, &#8220;cherry&#8221;]<\/p>\n\n\n\n<p>for i in range(len(fruits)):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(f&#8221;Index {i}: {fruits[i]}&#8221;)<\/p>\n\n\n\n<p>Furthermore, you can modify items in the sequence since you have access to their position. This technique is especially valuable when working with multiple related collections simultaneously.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> \n  <br \/><br \/> \nTo add a quick dose of insight, here are a couple of interesting facts about Python loops you might not know:\n<br \/><br \/> \n<strong>Python\u2019s for Loop Isn\u2019t a Traditional Counter Loop:<\/strong> Unlike languages such as C or Java, Python\u2019s for loop is designed to iterate directly over items in a collection rather than relying on manual index updates. This design choice makes Python code cleaner, safer, and less prone to off-by-one errors.\n<br \/><br \/> \n<strong>The else Clause in Loops Is Rare and Powerful:<\/strong> Python is one of the few mainstream languages that allows an else block with loops. This else executes only when the loop finishes normally\u2014without hitting a break\u2014making it especially useful for search and validation logic.\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding the While Loop in Python<\/strong><\/h2>\n\n\n\n<p>Unlike for loops that iterate over sequences, while loops in Python execute a block of code repeatedly as long as a specified condition remains true. They shine in scenarios where you don&#8217;t know how many iterations will be needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1) Basic Syntax of the while Python Loop<\/strong><\/h3>\n\n\n\n<p>The structure of a while loop is straightforward:<\/p>\n\n\n\n<p>while condition:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;<em># Code to execute while the condition is True<\/em><\/p>\n\n\n\n<p>First and foremost, Python evaluates the condition. If it&#8217;s True, the indented code block runs, afterward the condition is checked again, and this cycle continues. The loop terminates once the condition becomes False.<\/p>\n\n\n\n<p>number = 1<\/p>\n\n\n\n<p>while number &lt;= 5:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(number)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;number += 1<\/p>\n\n\n\n<p>This code prints numbers from 1 to 5. Crucially, remember to update variables used in your condition, otherwise you&#8217;ll create an infinite loop.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2) Condition-Based Execution<\/strong><\/h3>\n\n\n\n<p>The beauty of while loops lies in their condition-based nature. Consequently, they&#8217;re ideal for:<\/p>\n\n\n\n<ul>\n<li>Processing input until a specific value is entered<\/li>\n\n\n\n<li>Running code until a certain state is reached<\/li>\n\n\n\n<li>Handling unpredictable interactions<\/li>\n<\/ul>\n\n\n\n<p>For example:<\/p>\n\n\n\n<p>while user_input != &#8220;quit&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;user_input = input(&#8220;Enter command: &#8220;)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;<em># Process the command<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3) Creating Infinite Python Loops<\/strong><\/h3>\n\n\n\n<p>Sometimes, you might need a loop to run indefinitely. Additionally, you can create an infinite loop by setting a condition that&#8217;s always True:<\/p>\n\n\n\n<p>while True:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(&#8220;This will run forever!&#8221;)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;<em># Must include a break statement somewhere to exit<\/em><\/p>\n\n\n\n<p>To prevent your program from running forever, include a break statement within the loop that executes when a specific condition is met.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4) Using else with a while Python Loop<\/strong><\/h3>\n\n\n\n<p>Uniquely to Python, while loops can include an else clause that executes after the loop&#8217;s condition becomes False:<\/p>\n\n\n\n<p>counter = 0<\/p>\n\n\n\n<p>while counter &lt; 3:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(counter)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;counter += 1<\/p>\n\n\n\n<p>else:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(&#8220;Loop completed normally&#8221;)<\/p>\n\n\n\n<p>The else block runs only when the loop condition becomes False naturally\u2014not if you exit with a break statement. This feature is extremely useful for implementing search algorithms or validating input after multiple attempts.<\/p>\n\n\n\n<p>Remember that within while loops, you can use break to exit immediately and continue to skip to the next iteration, giving you complete control over loop flow.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Nested Python Loops and Control Statements<\/strong><\/h2>\n\n\n\n<p>Taking nested loops to the next level, Python allows you to place one loop inside another to handle multi-dimensional data structures or create complex patterns. This powerful technique enables more sophisticated programming solutions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1) What is a Nested Loop in Python?<\/strong><\/h3>\n\n\n\n<p>A nested loop simply means having one loop inside another loop. The inner loop executes completely for each iteration of the outer loop. This structure is useful when working with multidimensional data or when you need multiple layers of repetition.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2) Nested for and while Loops<\/strong><\/h3>\n\n\n\n<p>Python offers flexibility in loop combinations &#8211; you can place any type of loop inside any other type. Moreover, you can mix them freely:<\/p>\n\n\n\n<p>for i in range(3):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;j = 0<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;while j &lt; i:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(i, j)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;j += 1<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3) Using break to exit a Loop<\/strong><\/h3>\n\n\n\n<p>The break statement immediately terminates the innermost loop when encountered:<\/p>\n\n\n\n<p>for i in range(5):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;for j in range(5):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if j == 3:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break&nbsp; <em># Exits only the inner loop<\/em><\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(i, j)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4) Using Continue to Skip an Iteration<\/strong><\/h3>\n\n\n\n<p>The continue statement skips the current iteration and jumps to the next one:<\/p>\n\n\n\n<p>for letter in &#8220;Python&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;if letter == &#8220;t&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;continue<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;print(letter)&nbsp; <em># Prints: P y h o n<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5) Using Pass as a Placeholder<\/strong><\/h3>\n\n\n\n<p>The pass statement does absolutely nothing &#8211; it&#8217;s a null operation that serves as a placeholder when syntax requires a statement but you don&#8217;t want any action:<\/p>\n\n\n\n<p>while True:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;pass&nbsp; <em># Busy-wait for keyboard interrupt<\/em><\/p>\n\n\n\n<p>Master Python the right way with HCL GUVI\u2019s <a href=\"https:\/\/www.guvi.in\/courses\/programming\/python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Master+Python+Loops+in+One+Hour%3A+From+Basics+to+Nested+Loops\" target=\"_blank\" rel=\"noreferrer noopener\">Python Course<\/a>, where complex concepts like decorators are broken down through real-world examples and hands-on practice. Perfect for beginners and intermediate learners, it helps you write cleaner, reusable, and production-ready Python code with confidence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Concluding Thoughts\u2026<\/strong><\/h2>\n\n\n\n<p>Python loops stand as essential programming tools that significantly simplify repetitive tasks in your code. Throughout this guide, you&#8217;ve learned the fundamentals of both for loops and while loops, each serving distinct purposes in different programming scenarios. For loops excel when iterating through known sequences, whereas while loops prove invaluable when execution depends on changing conditions.<\/p>\n\n\n\n<p>As you practice implementing these loop structures in your own projects, you&#8217;ll soon find them becoming second nature. The concepts covered here\u2014from basic iteration to complex nested patterns\u2014provide everything needed to master Python loops. Remember that choosing the right loop type for each situation marks the difference between efficient code and potential pitfalls like infinite loops.<\/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-1768839550077\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q1. What are the main types of loops in Python?\u00a0<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>There are two main types of loops in Python: for loops and while loops. For loops are used to iterate over sequences like lists or strings, while while loops execute a block of code repeatedly as long as a condition is true.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768839557932\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q2. How can I make Python loops easier to understand?\u00a0<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>To better understand loops, try using print statements to visualize what&#8217;s happening at each step. Practice by solving real-world problems that require repetition, and experiment with different loop structures to see how they work.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768839568228\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q3. When should I use a for loop versus a while loop?\u00a0<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use a for loop when you know the number of iterations in advance or when iterating over a sequence. Use a while loop when you need to continue until a specific condition changes or when the number of iterations is unknown beforehand.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768839580841\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q4. What are nested loops and when are they useful?\u00a0<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Nested loops are loops inside other loops. They&#8217;re useful for working with multi-dimensional data or creating complex patterns. For example, you might use nested loops to iterate through rows and columns of a matrix.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768839597185\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q5. How can I control the flow of a loop?\u00a0<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You can control loop flow using statements like break (to exit the loop), continue (to skip to the next iteration), and pass (as a placeholder). These allow you to fine-tune your loop&#8217;s behavior based on specific conditions.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Loops in Python allow you to execute code blocks multiple times efficiently, making repetitive tasks simpler and your code more elegant. When you&#8217;re working on any programming project, you&#8217;ll frequently need to perform the same action on different items or repeat operations until certain conditions are met. Python offers two main types of loops: for [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":99227,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"809","authorinfo":{"name":"Jaishree Tomar","url":"https:\/\/www.guvi.in\/blog\/author\/jaishree\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/01\/python-loop-300x112.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/01\/python-loop.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99143"}],"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\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=99143"}],"version-history":[{"count":4,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99143\/revisions"}],"predecessor-version":[{"id":99279,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99143\/revisions\/99279"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/99227"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=99143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=99143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=99143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}