{"id":99075,"date":"2026-01-19T16:47:05","date_gmt":"2026-01-19T11:17:05","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=99075"},"modified":"2026-02-23T15:18:48","modified_gmt":"2026-02-23T09:48:48","slug":"what-is-function-in-python","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-is-function-in-python\/","title":{"rendered":"What is Function in Python"},"content":{"rendered":"\n<p>When learning Python, beginners often notice that programs become longer as more logic is added. Repeating the same code again and again makes programs hard to read and maintain. Using a function in Python helps organize code into reusable blocks, making programs cleaner and easier to manage.<\/p>\n\n\n\n<p>This blog is written for beginners who want a clear understanding of a Python function and how it works. It explains what a function in Python is, why Python functions are important, and how they help you write structured, readable, and efficient Python programs.<\/p>\n\n\n\n<p><strong>Quick Answer<\/strong><\/p>\n\n\n\n<p>A function in Python is a reusable block of code designed to perform a specific task. Instead of writing the same logic multiple times, you can define it once as a Python function and call it whenever needed. Functions make Python programs cleaner, easier to understand, and simpler to maintain as they grow.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is A Function In Python<\/strong><\/h2>\n\n\n\n<p>A function in Python is a named block of code that is written to perform a specific task. Instead of writing the same logic again and again, you can place it inside a function and reuse it whenever needed in your program. This makes code easier to read, understand, and maintain, especially as programs grow larger.<\/p>\n\n\n\n<p>In simple terms, a Python function takes input, performs an action, and may return an output. Functions help break complex programs into smaller, manageable parts, allowing developers to focus on one task at a time. This structured approach is one of the main reasons Python programs stay clean and organized.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Reusable Code:<\/strong> A function in Python allows you to reuse the same logic multiple times without rewriting it.<\/li>\n\n\n\n<li><strong>Better Readability:<\/strong> Python functions make programs easier to understand by grouping related logic.<\/li>\n\n\n\n<li><strong>Simpler Maintenance:<\/strong> Updating logic inside a function updates it everywhere it is used.<\/li>\n<\/ul>\n\n\n\n<p>Do check out this HCL GUVI<strong> <\/strong><a href=\"https:\/\/www.guvi.in\/zen-class\/python-course\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=what-is-python-functions\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Python Course<\/strong><\/a> if you want hands-on practice with Python functions and other concepts. This course is designed for beginners to gain practical experience, write clean Python code, and build confidence by solving real-world problems step by step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How A Python Function Works<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/1-31.png\" alt=\"Infographic showing how a python function works.\" class=\"wp-image-102113\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/1-31.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/1-31-300x157.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/1-31-768x402.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/1-31-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>A <a href=\"https:\/\/www.guvi.in\/hub\/python\/what-is-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> function works by following a clear flow: it is first defined, then called, and finally executed when needed. When Python reads a function definition, it stores the instructions but does not execute them immediately. This allows the function to be reused multiple times across the program without rewriting the same logic.<\/p>\n\n\n\n<p>When a function is called, Python passes any given input values to it, runs the code inside the function step by step, and optionally returns a result. This process helps keep programs organized and allows developers to control how data is processed within the application.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Function Definition:<\/strong> A Python function is defined once using a name and a block of code.<\/li>\n\n\n\n<li><strong>Function Invocation:<\/strong> The function executes only when it is explicitly called.<\/li>\n\n\n\n<li><strong>Parameters:<\/strong> Functions can receive input values to work with.<\/li>\n\n\n\n<li><strong>Execution Flow:<\/strong> Python runs the function code from top to bottom.<\/li>\n\n\n\n<li><strong>Return Value:<\/strong> A function can send a result back to the caller after execution.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def add_numbers(a, b):\n    return a + b\nresult = add_numbers(3, 5)\nprint(result)<\/code><\/pre>\n\n\n\n<p>In this example, the function add_numbers is defined to add two numbers. The function runs only when it is called with values, and it returns the result after execution.<\/p>\n\n\n\n<p>You can try out your Python functions directly in the <a href=\"https:\/\/www.guvi.in\/ide\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=What-Is-Python-Functions\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>HCL GUVI IDE<\/strong><\/a>, an online coding environment that lets you write, run, and test Python code instantly. It\u2019s perfect for practicing concepts from this blog and experimenting with your own function implementations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types Of Functions In Python<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/2-21.png\" alt=\"Infographic showing the types of functions in python.\" class=\"wp-image-102114\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/2-21.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/2-21-300x157.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/2-21-768x402.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/2-21-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Python provides different types of functions to handle different programming needs. Knowing these types helps beginners understand when to use built-in solutions and when to write their own logic. Each type of function in python plays an important role in writing clean, reusable, and structured programs.<\/p>\n\n\n\n<p>In this section, you will learn about the most commonly used types of functions in python, including<\/p>\n\n\n\n<ol>\n<li>Built-in functions<\/li>\n\n\n\n<li>User-defined functions<\/li>\n\n\n\n<li>Functions with parameters<\/li>\n\n\n\n<li>Functions with return values<\/li>\n<\/ol>\n\n\n\n<p>Each type helps beginners understand how Python programs are structured and how logic is reused efficiently.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Built-In Functions<\/strong><\/h3>\n\n\n\n<p>Built-in functions are functions that are already included in Python and can be used directly without defining them. They help perform common operations like printing output, converting <a href=\"https:\/\/www.guvi.in\/blog\/types-of-data-structures-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">data types<\/a>, and doing mathematical calculations. Using built-in functions reduces effort and keeps programs short and readable.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Predefined Functions:<\/strong> Already available in Python.<\/li>\n\n\n\n<li><strong>No Extra Setup:<\/strong> Can be used immediately.<\/li>\n\n\n\n<li><strong>Optimized Performance:<\/strong> Reliable and efficient.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>number = -20\nprint(abs(number))\n<\/code><\/pre>\n\n\n\n<p><strong>Explanation<\/strong><\/p>\n\n\n\n<p>In this example, abs is a built-in function that converts a negative number into a positive value. Since it is built in, there is no need to write the function yourself.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. User-Defined Functions<\/strong><\/h3>\n\n\n\n<p>User-defined functions are created by programmers to perform specific tasks that are not handled by built-in functions. They allow you to group logic into reusable blocks, making programs easier to understand and maintain. These functions are useful when the same operation is repeated multiple times.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Custom Logic:<\/strong> Written for specific needs.<\/li>\n\n\n\n<li><strong>Reusable Code:<\/strong> Can be called many times.<\/li>\n\n\n\n<li><strong>Better Structure:<\/strong> Improves readability.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def greet_user():\n    print(\"Hello, welcome to Python\")\ngreet_user()\n<\/code><\/pre>\n\n\n\n<p><strong>Explanation<\/strong><\/p>\n\n\n\n<p>Here, the function greet_user is defined to print a welcome message. The code inside the function runs only when the function is called.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Functions With Parameters<\/strong><\/h3>\n\n\n\n<p>Functions with parameters allow values to be passed into a function so it can work with different inputs. This makes functions flexible and avoids writing multiple functions for similar tasks. Parameters help control how data flows into the function.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Accept Input Values:<\/strong> Data is passed during function calls.<\/li>\n\n\n\n<li><strong>Flexible Usage:<\/strong> The same function works with different inputs.<\/li>\n\n\n\n<li><strong>Clear <\/strong><a href=\"https:\/\/www.guvi.in\/blog\/data-handling-with-big-data-and-dbms\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Data Handling<\/strong><\/a><strong>:<\/strong> Easy to track inputs.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def greet(name):\n    print(\"Hello\", name)\ngreet(\"Ravi\")\n<\/code><\/pre>\n\n\n\n<p><strong>Explanation<\/strong><\/p>\n\n\n\n<p>In this example, the value &#8220;Ravi&#8221; is passed to the parameter name. The function uses this value to print a personalized message.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Functions With Return Values<\/strong><\/h3>\n\n\n\n<p>Functions with return values send a result back to the part of the program that called them. This is useful when the output needs to be reused later for calculations or decisions. Return values make functions more powerful and practical.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Returns Output:<\/strong> Sends results back to the caller.<\/li>\n\n\n\n<li><strong>Reusable Results:<\/strong> Can be stored in <a href=\"https:\/\/www.guvi.in\/blog\/do-you-know-how-to-create-variables-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">variables<\/a>.<\/li>\n\n\n\n<li><strong>Efficient Logic:<\/strong> Avoids repeating calculations.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def add(a, b):\n    return a + b\ntotal = add(5, 7)\nprint(total)\n<\/code><\/pre>\n\n\n\n<p><strong>Explanation<\/strong><\/p>\n\n\n\n<p>Here, the function add returns the sum of two numbers. The returned value is stored in the variable total and used later in the program.<\/p>\n\n\n\n<p>You can also explore the HCL GUVI<strong> <\/strong><a href=\"https:\/\/www.guvi.in\/hub\/python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=What-Is-Python-Functions\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Python Hub<\/strong><\/a> to strengthen your understanding of core concepts like Python functions with tutorials, examples, and practice exercises. It\u2019s a great resource to reinforce what you\u2019ve learned in this blog and build your coding confidence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>When To Use Functions In Python Programs<\/strong><\/h2>\n\n\n\n<p>Using functions in Python is not just about writing reusable code; it\u2019s about organizing your program for clarity and efficiency. Functions should be used whenever a specific task needs to be repeated, when a program becomes too long, or when you want to break complex logic into manageable pieces. By doing this, Python programs become easier to read, debug, and maintain.<\/p>\n\n\n\n<p>Some common scenarios for using functions in Python include processing data, performing calculations, interacting with users, or handling repetitive tasks. Functions allow developers to isolate logic, making future updates safer and reducing the chance of introducing errors.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Repetitive Tasks:<\/strong> Use functions to handle logic that occurs multiple times.<\/li>\n\n\n\n<li><strong>Complex Logic:<\/strong> Break down large or complicated code into smaller, manageable functions.<\/li>\n\n\n\n<li><strong>Code Reusability:<\/strong> One function can serve multiple parts of a program.<\/li>\n\n\n\n<li><strong>Testing &amp; <\/strong><a href=\"https:\/\/www.guvi.in\/blog\/debugging-in-software-development\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Debugging<\/strong><\/a><strong>:<\/strong> Functions make it easier to test small pieces of code individually.<\/li>\n\n\n\n<li><strong>Cleaner Programs:<\/strong> Keeps the main code readable and organized.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Functions Are Important In Python<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/3-19.png\" alt=\"Infographic showing why functions are important in python.\" class=\"wp-image-102115\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/3-19.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/3-19-300x157.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/3-19-768x402.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/3-19-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Functions are a fundamental part of writing clean and efficient Python programs. They allow developers to group related logic, avoid repetition, and make code easier to read and maintain. Without functions, programs quickly become long, confusing, and difficult to debug, especially as they grow in size and complexity.<\/p>\n\n\n\n<p>Using functions also encourages better programming habits, such as modularity and reusability. They make collaboration easier because different developers can work on separate functions without interfering with each other. For beginners, understanding functions in Python is a critical step toward writing professional-quality code.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Avoid Repetition:<\/strong> Functions let you reuse code instead of copying it multiple times.<\/li>\n\n\n\n<li><strong>Improved Readability:<\/strong> Grouping logic into functions makes programs easier to understand.<\/li>\n\n\n\n<li><strong>Easier Maintenance:<\/strong> Changes can be made in one function without affecting other parts of the code.<\/li>\n\n\n\n<li><strong>Modular Design:<\/strong> Functions promote cleaner, modular, and organized code.<\/li>\n\n\n\n<li><strong>Professional Practices:<\/strong> Most real-world <a href=\"https:\/\/www.guvi.in\/blog\/python-projects-for-beginners\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python projects<\/a> rely heavily on functions.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Mistakes Beginners Make With Python Functions<\/strong><\/h2>\n\n\n\n<p>When starting out, beginners often make mistakes with functions that can lead to errors or confusing code. Some common issues include not using parameters correctly, forgetting to return a value, or writing overly long functions that try to do too much. Understanding these pitfalls helps you write cleaner and more effective Python functions.<\/p>\n\n\n\n<p>Other mistakes include using inconsistent naming, redefining built-in functions by accident, or calling functions before they are defined. Learning to avoid these errors early on builds good coding habits and makes your programs more reliable.<\/p>\n\n\n\n<p><strong>Key Points<\/strong><\/p>\n\n\n\n<ul>\n<li><strong>Forgetting Return:<\/strong> Not returning a value when needed can cause unexpected results.<\/li>\n\n\n\n<li><strong>Incorrect Parameters:<\/strong> Mismatched or missing parameters can lead to errors.<\/li>\n\n\n\n<li><strong>Overly Long Functions:<\/strong> Functions should focus on one task, not multiple unrelated tasks.<\/li>\n\n\n\n<li><strong>Poor Naming:<\/strong> Descriptive names help others understand the purpose of the function.<\/li>\n\n\n\n<li><strong>Calling Too Early:<\/strong> Functions must be defined before they are called in the code.<\/li>\n<\/ul>\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; margin: 22px auto;\">\n  <h3 style=\"margin-top: 0; font-size: 22px; font-weight: 700; color: #ffffff;\">\ud83d\udca1 Did You Know?<\/h3>\n  <ul style=\"padding-left: 20px; margin: 10px 0;\">\n    <li>Functions in Python can be defined inside other functions, which are called nested functions.<\/li>\n    <li>Python supports anonymous functions known as lambda functions, written in a single line.<\/li>\n    <li>Popular Python libraries like NumPy and Pandas use functions extensively for reusable operations.<\/li>\n  <\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Understanding functions in Python is essential for writing clean, organized, and efficient programs. By grouping logic into reusable blocks, functions help beginners manage complex tasks and reduce repetitive code. Mastering Python functions lays a strong foundation for building larger, real-world applications.<\/p>\n\n\n\n<p>Using functions also encourages good programming habits like modularity and clarity. Whether you are calculating values, processing data, or interacting with users, incorporating functions into your Python code makes your programs more reliable and easier to maintain.<\/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-1768807462077\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. Can a function call itself in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, Python supports recursive functions, where a function can call itself to solve problems like calculating factorials or Fibonacci numbers.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768807480589\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What happens if I don\u2019t use a return statement in a function?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>If a function doesn\u2019t have a return statement, it automatically returns None after execution.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768807504368\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. Can I use a function from one Python file in another file?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, you can import functions from other files using Python\u2019s import statement to reuse code across programs.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768807527004\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Are Python functions objects?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, in Python, functions are first-class objects. This means you can assign them to variables, pass them as arguments, or store them in data structures.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768807545414\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Can a Python function have default values for parameters?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, you can assign default values to parameters so the function can be called without explicitly passing those arguments.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>When learning Python, beginners often notice that programs become longer as more logic is added. Repeating the same code again and again makes programs hard to read and maintain. Using a function in Python helps organize code into reusable blocks, making programs cleaner and easier to manage. This blog is written for beginners who want [&hellip;]<\/p>\n","protected":false},"author":65,"featured_media":102111,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"915","authorinfo":{"name":"Jebasta","url":"https:\/\/www.guvi.in\/blog\/author\/jebasta\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/01\/Feature-image-15-300x116.png","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/01\/Feature-image-15.png","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99075"}],"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\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=99075"}],"version-history":[{"count":4,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99075\/revisions"}],"predecessor-version":[{"id":102116,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/99075\/revisions\/102116"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/102111"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=99075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=99075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=99075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}