{"id":4180,"date":"2019-09-04T06:39:05","date_gmt":"2019-09-04T06:39:05","guid":{"rendered":"https:\/\/tutorialsclass.com\/?p=4180"},"modified":"2021-02-03T07:24:13","modified_gmt":"2021-02-03T07:24:13","slug":"python-while-loop","status":"publish","type":"post","link":"https:\/\/tutorialsclass.com\/python-while-loop\/","title":{"rendered":"Python While Loop"},"content":{"rendered":"\n<p>while loop is a control flow statement that allow to execute the code until the given condition is false. Sometimes, we need to execute a statement more than one time. We can do the so by Python Loops. Unlike other programming languages, Python has only two types of loops:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>while loop<\/li><li>for loop<\/li><\/ul>\n\n\n\n<p>In this tutorial, we are going to learn about the while loop. If you want to know about for loop, then click here.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Python While Loop<\/h3>\n\n\n\n<p>With the help of the Python While Loop, we can execute a specific statement until the given condition is false. Once the condition becomes false, then the flow of the program comes out of the loop.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Syntax of while loop<\/h5>\n\n\n\n<p class=\"lang:python\"><code>while condition:  <\/code><br><code>statement<\/code> <\/p>\n\n\n\n<p>With the help of <code>while<\/code> keyword, we define the while loop. Just after while keyword, we specify the condition on that basis loop will work. Then in the next line, with the indentation, we give the statement to be executed.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><br><strong>Example of printing a consecutive series from 1 to 5 by using while loop.<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>num = 1\nwhile num&amp;lt;=5:\n print(num)\n num+=1        # num=num+1<\/code><\/pre>\n\n\n\t<div class=\"tc-browser-container\">\r\n\t\t<div class=\"top\">\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-browser-title\"> Output of the above program is <\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"tc-browser-content\"> <p>\n1<br \/>\n2<br \/>\n3<br \/>\n4<br \/>\n5<\/p>\n <\/div>\r\n\t<\/div>\r\n\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Break Statement<\/h3>\n\n\n\n<p>With the help of the <code>break<\/code> statement, we can terminate the loop. It will terminate the loop even if the condition is true. By the <code>break<\/code> keyword we describe the <code>break<\/code> statement.<br><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Example of break statement<\/h4>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>num = 1\nwhile num &lt;= 5:\n    if(num == 4):\n        break\n    print(num)\n    num += 1\nprint(\"WELCOME\")<\/code><\/pre>\n\n\n\t<div class=\"tc-browser-container\">\r\n\t\t<div class=\"top\">\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-browser-title\"> Output of the above program is <\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"tc-browser-content\"> <p>\n1<br \/>\n2<br \/>\n3<\/p>\n <\/div>\r\n\t<\/div>\r\n\n\n\n\n<p><strong>Note:<\/strong> The break statement only terminates the loop, it does not completely stop the flow of the program.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Continue Statement<\/h3>\n\n\n\n<p>The continue statement uses inside the block of loops. When the continue statement encounters control of loop jumps at the beginning of the loop for the next iteration. It will terminate only one turn of the loop even if the condition is true. By the continue keyword we describe the break statement. It doesn&#8217;t terminate the loop,<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Example of continue statement<\/h4>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>num = 0\nwhile num &lt; 5:\n    num += 1            # similiar to  num=num+1\n    if num == 4:\n        continue\n    print(num)\nprint(\"WELCOME\")<\/code><\/pre>\n\n\n\t<div class=\"tc-browser-container\">\r\n\t\t<div class=\"top\">\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-browser-title\"> Output of the above program is <\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"tc-browser-content\"> <p>\n1<br \/>\n2<br \/>\n3<br \/>\n5<\/p>\n <\/div>\r\n\t<\/div>\r\n\n\n\n\n<p><strong>Note:<\/strong> The continue statement only skips one iteration of the loop, it does not completely stop the flow of the program.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Python While Loop &#8211; with else statement<\/h3>\n\n\n\n<p>We can also use else statement with the while loop just like if.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Syntax<\/h5>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>while condition:\n\tstatement of loop\nelse:\n\tstatement of else <\/code><\/pre>\n\n\n\n<p>If the condition of a while loop is satisfied then the loop statement will execute. Otherwise, the else statement will execute.<br><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Example of while loop with else statement<\/h4>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>var = 0\nwhile var &lt;= 5:\n    print(\"loop's code\")\n    var += 1\nelse:\n    print(\"else's code\")<\/code><\/pre>\n\n\n\t<div class=\"tc-browser-container\">\r\n\t\t<div class=\"top\">\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-browser-title\"> Output of the above program is <\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"tc-browser-content\"> <p>\nloop&#8217;s code<br \/>\nloop&#8217;s code<br \/>\nloop&#8217;s code<br \/>\nloop&#8217;s code<br \/>\nloop&#8217;s code<br \/>\nelse&#8217;s code<\/p>\n <\/div>\r\n\t<\/div>\r\n\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Nested while loop<\/h3>\n\n\n\n<p>Nested while loop means a while loop inside another while loop. Like a nested if, we can also perform some actions by the nested while loop as well.<br>We generally use nested while loop, when we are going to execute a block of code on the basis of another block of code, number of times or with the other block of code.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><br><strong>Example of nested while loop<\/strong><br><\/h4>\n\n\n\n<pre class=\"wp-block-code language-python\"><code>num_1 = 1\nnum_2 = 6\nwhile num_1 &amp;lt;=5:\n    while num_2 &amp;lt;=10:\n        print(num_1, \",\", num_2)\n        num_2 += 1\n        num_1 += 1<\/code><\/pre>\n\n\n\t<div class=\"tc-browser-container\">\r\n\t\t<div class=\"top\">\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-circle\"><\/span>\r\n\t\t\t<span class=\"tc-browser-title\"> Output of the above program is <\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"tc-browser-content\"> <p>\n1 , 6<br \/>\n2 , 7<br \/>\n3 , 8<br \/>\n4 , 9<br \/>\n5 , 10<\/p>\n <\/div>\r\n\t<\/div>\r\n\n","protected":false},"excerpt":{"rendered":"<p>while loop is a control flow statement that allow to execute the code until the given condition is false. Sometimes, we need to execute a statement more than one time. We can&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"keywords":[],"class_list":["post-4180","post","type-post","status-publish","format-standard","hentry","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Learn Python While Loop with Examples - Tutorials Class<\/title>\n<meta name=\"description\" content=\"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tutorialsclass.com\/python-while-loop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn Python While Loop with Examples - Tutorials Class\" \/>\n<meta property=\"og:description\" content=\"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorialsclass.com\/python-while-loop\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorials Class\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tutorialsclass\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-04T06:39:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-03T07:24:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/07\/tutorials-class-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tutorials Class\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TutorialsClass\" \/>\n<meta name=\"twitter:site\" content=\"@TutorialsClass\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tutorials Class\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/\"},\"author\":{\"name\":\"Tutorials Class\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e\"},\"headline\":\"Python While Loop\",\"datePublished\":\"2019-09-04T06:39:05+00:00\",\"dateModified\":\"2021-02-03T07:24:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/\"},\"wordCount\":518,\"publisher\":{\"@id\":\"https:\/\/tutorialsclass.com\/#organization\"},\"articleSection\":[\"Python Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/\",\"url\":\"https:\/\/tutorialsclass.com\/python-while-loop\/\",\"name\":\"Learn Python While Loop with Examples - Tutorials Class\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsclass.com\/#website\"},\"datePublished\":\"2019-09-04T06:39:05+00:00\",\"dateModified\":\"2021-02-03T07:24:13+00:00\",\"description\":\"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorialsclass.com\/python-while-loop\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorialsclass.com\/python-while-loop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorialsclass.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learn\",\"item\":\"https:\/\/tutorialsclass.com\/learn\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python Tutorial\",\"item\":\"https:\/\/tutorialsclass.com\/learn\/python\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Python While Loop\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorialsclass.com\/#website\",\"url\":\"https:\/\/tutorialsclass.com\/\",\"name\":\"Tutorials Class\",\"description\":\"Online Tutorials for Beginners\",\"publisher\":{\"@id\":\"https:\/\/tutorialsclass.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorialsclass.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tutorialsclass.com\/#organization\",\"name\":\"Tutorials Class\",\"url\":\"https:\/\/tutorialsclass.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png\",\"contentUrl\":\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png\",\"width\":442,\"height\":94,\"caption\":\"Tutorials Class\"},\"image\":{\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tutorialsclass\",\"https:\/\/x.com\/TutorialsClass\",\"https:\/\/in.pinterest.com\/merientinfotech\/boards\/\",\"https:\/\/www.youtube.com\/channel\/UCzbpQXlqec-bQf1_kwrTuoA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e\",\"name\":\"Tutorials Class\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g\",\"caption\":\"Tutorials Class\"},\"sameAs\":[\"tcadmin\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Learn Python While Loop with Examples - Tutorials Class","description":"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.","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:\/\/tutorialsclass.com\/python-while-loop\/","og_locale":"en_US","og_type":"article","og_title":"Learn Python While Loop with Examples - Tutorials Class","og_description":"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.","og_url":"https:\/\/tutorialsclass.com\/python-while-loop\/","og_site_name":"Tutorials Class","article_publisher":"https:\/\/www.facebook.com\/tutorialsclass","article_published_time":"2019-09-04T06:39:05+00:00","article_modified_time":"2021-02-03T07:24:13+00:00","og_image":[{"width":600,"height":600,"url":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/07\/tutorials-class-logo.png","type":"image\/png"}],"author":"Tutorials Class","twitter_card":"summary_large_image","twitter_creator":"@TutorialsClass","twitter_site":"@TutorialsClass","twitter_misc":{"Written by":"Tutorials Class","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tutorialsclass.com\/python-while-loop\/#article","isPartOf":{"@id":"https:\/\/tutorialsclass.com\/python-while-loop\/"},"author":{"name":"Tutorials Class","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e"},"headline":"Python While Loop","datePublished":"2019-09-04T06:39:05+00:00","dateModified":"2021-02-03T07:24:13+00:00","mainEntityOfPage":{"@id":"https:\/\/tutorialsclass.com\/python-while-loop\/"},"wordCount":518,"publisher":{"@id":"https:\/\/tutorialsclass.com\/#organization"},"articleSection":["Python Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/tutorialsclass.com\/python-while-loop\/","url":"https:\/\/tutorialsclass.com\/python-while-loop\/","name":"Learn Python While Loop with Examples - Tutorials Class","isPartOf":{"@id":"https:\/\/tutorialsclass.com\/#website"},"datePublished":"2019-09-04T06:39:05+00:00","dateModified":"2021-02-03T07:24:13+00:00","description":"Python while loop is a control flow statement that allow to execution the code repeatedly. In this tutorial learn while loop with examples.","breadcrumb":{"@id":"https:\/\/tutorialsclass.com\/python-while-loop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorialsclass.com\/python-while-loop\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tutorialsclass.com\/python-while-loop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorialsclass.com\/"},{"@type":"ListItem","position":2,"name":"Learn","item":"https:\/\/tutorialsclass.com\/learn\/"},{"@type":"ListItem","position":3,"name":"Python Tutorial","item":"https:\/\/tutorialsclass.com\/learn\/python\/"},{"@type":"ListItem","position":4,"name":"Python While Loop"}]},{"@type":"WebSite","@id":"https:\/\/tutorialsclass.com\/#website","url":"https:\/\/tutorialsclass.com\/","name":"Tutorials Class","description":"Online Tutorials for Beginners","publisher":{"@id":"https:\/\/tutorialsclass.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorialsclass.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tutorialsclass.com\/#organization","name":"Tutorials Class","url":"https:\/\/tutorialsclass.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/","url":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png","contentUrl":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png","width":442,"height":94,"caption":"Tutorials Class"},"image":{"@id":"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tutorialsclass","https:\/\/x.com\/TutorialsClass","https:\/\/in.pinterest.com\/merientinfotech\/boards\/","https:\/\/www.youtube.com\/channel\/UCzbpQXlqec-bQf1_kwrTuoA"]},{"@type":"Person","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e","name":"Tutorials Class","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g","caption":"Tutorials Class"},"sameAs":["tcadmin"]}]}},"_links":{"self":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/4180","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/comments?post=4180"}],"version-history":[{"count":1,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/4180\/revisions"}],"predecessor-version":[{"id":6834,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/4180\/revisions\/6834"}],"wp:attachment":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/media?parent=4180"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/categories?post=4180"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/tags?post=4180"},{"taxonomy":"keywords","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/keywords?post=4180"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}