{"id":13943,"date":"2023-02-28T11:36:05","date_gmt":"2023-02-28T11:36:05","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=13943"},"modified":"2023-11-01T06:43:31","modified_gmt":"2023-11-01T06:43:31","slug":"remove-function-in-python","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/","title":{"rendered":"Remove Function in Python"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\" alt=\"\" \/><\/p>\n<p>Python, a versatile and widely-used programming language, offers a plethora of functions to manipulate data structures. Among these, the remove function in Python is a valuable tool for working with lists. The remove function in Python allows you to eliminate specific elements from a list, streamlining data processing and management. Whether you&#8217;re a beginner looking to grasp the fundamentals of this function or an experienced developer seeking to enhance your Python skills, this article is your guide to understanding and mastering the remove function in Python. We&#8217;ll explore its capabilities, provide practical examples, and show you how to harness its power for efficient list manipulation. Read on to unlock the potential of the remove function in Python and simplify your data handling tasks.<\/p>\n<h2>What is the Remove() Function in Python?<\/h2>\n<p>The &#8216;remove&#8217; function is a built-in function in Python that is used to remove a specified item from a list. A list is an ordered collection of elements that can be of any data type such as strings, integers, or even other lists. The &#8216;remove&#8217; function is used to delete a specific element from a list, thereby modifying the list. This function is particularly useful when you need to remove an item from a list based on a certain condition.<\/p>\n<p>Note that the &#8216;remove&#8217; function only removes the first occurrence of the specified item from the list. If the item appears multiple times in the list, only the first occurrence will be removed. If you want to remove all occurrences of the item, you can use a loop to iterate over the list and remove the item from each occurrence.<\/p>\n<h2>Syntax of Remove Function in Python<\/h2>\n<p>The syntax of the remove function in Python is as follows:<\/p>\n<pre><code>list_name.remove(item)<\/code><\/pre>\n<p>Here, &#8216;list_name&#8217; refers to the name of the list from which you want to remove the item, and &#8216;item&#8217; refers to the item that you want to remove from the list. Note that the &#8216;remove&#8217; function is a list method, which means it is called using the dot notation on a list object.<\/p>\n<h2>Return Value of Remove Function in Python<\/h2>\n<p>The remove function in Python does not return anything. It modifies the original list by removing the specified item. If the specified item is not found in the list, the &#8216;remove&#8217; function raises a ValueError.<\/p>\n<h2>Time Complexity of Remove Function in Python<\/h2>\n<p>In Python, the time complexity of the &#8216;remove&#8217; function is O(n), where n is the length of the list. This is because the function needs to search the list sequentially to find the first occurrence of the specified item and then remove it. If the item is at the beginning of the list, the function will have to search through the entire list, resulting in a worst-case time complexity of O(n).<\/p>\n<p>It is important to note that if you are removing multiple occurrences of the same item from the list, the time complexity can be significantly higher as you may need to iterate over the list multiple times. In such cases, it may be more efficient to use other data structures or algorithms that have better time complexity for the specific task you are trying to accomplish.<\/p>\n<h2>Examples of Remove Function in Python<\/h2>\n<p>Now, let&#8217;s look at some examples of how to use the remove function in Python.<\/p>\n<p><strong>Example 1: Remove Function in Python<\/strong><br \/>\nRemoving an Item from a List<\/p>\n<p><strong>Code Implementation:<\/strong><\/p>\n<pre><code>fruits = ['apple', 'banana', 'cherry', 'orange']\nfruits.remove('banana')\nprint(fruits)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>['apple', 'cherry', 'orange']<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn this example, we have a list of fruits. We want to remove the &#8216;banana&#8217; from the list using the &#8216;remove&#8217; function. The &#8216;remove&#8217; function removes the &#8216;banana&#8217; from the list, and the modified list is printed.<\/p>\n<p><strong>Example 2: Remove Function in Python<\/strong><br \/>\nRemoving an Item Based on Condition<\/p>\n<p><strong>Code Implementation:<\/strong><\/p>\n<pre><code>numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\nfor num in numbers:\n    if num % 2 == 0:\n        numbers.remove(num)\nprint(numbers)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>[1, 3, 5, 7, 9]<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn this example, we have a list of numbers. We want to remove all even numbers from the list using the &#8216;remove&#8217; function. We use a for loop to iterate over the list and check if each number is even or not using the modulus operator. If a number is even, we remove it from the list using the &#8216;remove&#8217; function. The modified list is printed after all even numbers have been removed.<\/p>\n<p><strong>Example 3: Remove Function in Python<\/strong><br \/>\nHandling ValueErrors<\/p>\n<p><strong>Code Implementation:<\/strong><\/p>\n<pre><code>fruits = ['apple', 'banana', 'cherry', 'orange']\ntry:\n    fruits.remove('mango')\nexcept ValueError:\n    print(\"The specified item is not found in the list.\")\nprint(fruits)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>The specified item is not found in the list.\n['apple', 'banana', 'cherry', 'orange']<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn this example, we have a list of fruits. We try to remove the item which is not present in the list, We use the remove function which gives the value error, In this example as we observe the mango is not present in the list, we use except statement to handle the error in which we use the print function to print   &quot;The specified item is not found in the list.&quot;<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nThe remove function in Python is a straightforward yet powerful tool that empowers you to manipulate lists with ease. By mastering this function, you can efficiently eliminate specific elements from your lists, making your code more elegant and readable. Whether you&#8217;re cleaning up data, filtering out unwanted values, or reorganizing information, the &quot;remove&quot; function can be an indispensable part of your Python toolkit. As you become more proficient in using this function, you&#8217;ll discover a host of applications for it in various programming tasks. By understanding and mastering the &quot;remove&quot; function, you&#8217;ll enhance your Python programming capabilities and improve your ability to work with lists effectively.<\/p>\n<h2>FAQ Related to Remove Function in Python<\/h2>\n<p>Here are some FAQs on remove function in Python.<\/p>\n<p><strong>Q1: What is the &quot;remove&quot; function in Python?<\/strong><br \/>\n<strong>A1:<\/strong> The &quot;remove&quot; function is a built-in method in Python used to remove a specific element from a list. It modifies the list in place by deleting the first occurrence of the specified value.<\/p>\n<p><strong>Q2: What is the difference between the \u2018remove\u2019 function and the \u2018del\u2019 statement in Python?<\/strong><br \/>\n<strong>A2:<\/strong> The \u2018remove\u2019 function is a list method that removes the first occurrence of a specified item from a list, while the \u2018del\u2019 statement is a built-in Python statement that can be used to delete a specific element or slice of a list. The \u2018del\u2019 statement can also be used to delete variables or other objects in Python.<\/p>\n<p><strong>Q3: What happens if the value is not present in the list when using &quot;remove&quot;?<\/strong><br \/>\n<strong>A3:<\/strong> If the value you&#8217;re trying to remove is not in the list, Python will raise a ValueError. To avoid this error, you can first check if the element exists in the list using the in operator or handle exceptions using a try&#8230;except block.<\/p>\n<p><strong>Q4: Are there alternatives to the &quot;remove&quot; function for removing elements from a list?<\/strong><br \/>\n<strong>A4:<\/strong> Yes, there are other methods like list comprehension and using the del statement. However, the &quot;remove&quot; function is particularly useful when you want to remove a specific value without knowing its index in the list.<\/p>\n<p><strong>Q5: Can I use the &quot;remove&quot; function for removing multiple occurrences of an element from a list?<\/strong><br \/>\n<strong>A5:<\/strong> No, the &quot;remove&quot; function removes only the first occurrence of the specified value. If you want to remove all occurrences, you may need to use a loop or list comprehension to filter out those values.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python, a versatile and widely-used programming language, offers a plethora of functions to manipulate data structures. Among these, the remove function in Python is a valuable tool for working with lists. The remove function in Python allows you to eliminate specific elements from a list, streamlining data processing and management. Whether you&#8217;re a beginner looking [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[154],"tags":[],"class_list":["post-13943","post","type-post","status-publish","format-standard","hentry","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Remove() Function in Python<\/title>\n<meta name=\"description\" content=\"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remove() Function in Python\" \/>\n<meta property=\"og:description\" content=\"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-28T11:36:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-01T06:43:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Remove Function in Python\",\"datePublished\":\"2023-02-28T11:36:05+00:00\",\"dateModified\":\"2023-11-01T06:43:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\"},\"wordCount\":1205,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\",\"name\":\"Remove() Function in Python\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\",\"datePublished\":\"2023-02-28T11:36:05+00:00\",\"dateModified\":\"2023-11-01T06:43:31+00:00\",\"description\":\"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Remove Function in Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remove() Function in Python","description":"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.","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:\/\/prepbytes.com\/blog\/remove-function-in-python\/","og_locale":"en_US","og_type":"article","og_title":"Remove() Function in Python","og_description":"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.","og_url":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-02-28T11:36:05+00:00","article_modified_time":"2023-11-01T06:43:31+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Remove Function in Python","datePublished":"2023-02-28T11:36:05+00:00","dateModified":"2023-11-01T06:43:31+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/"},"wordCount":1205,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/","url":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/","name":"Remove() Function in Python","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg","datePublished":"2023-02-28T11:36:05+00:00","dateModified":"2023-11-01T06:43:31+00:00","description":"The \u2018remove\u2019 function is a built-in function in Python that is used to remove a specified item from a list.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/remove-function-in-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1677571113026-remove%28%29%20Function%20in%20Python.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/remove-function-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/prepbytes.com\/blog\/category\/python\/"},{"@type":"ListItem","position":3,"name":"Remove Function in Python"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/13943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=13943"}],"version-history":[{"count":3,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/13943\/revisions"}],"predecessor-version":[{"id":18281,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/13943\/revisions\/18281"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=13943"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=13943"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=13943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}