{"id":16516,"date":"2023-05-24T06:23:32","date_gmt":"2023-05-24T06:23:32","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=16516"},"modified":"2024-06-18T06:46:34","modified_gmt":"2024-06-18T06:46:34","slug":"python-program-to-find-sum-of-array","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/","title":{"rendered":"Python Program to Find Sum of Array"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg\" alt=\"\" \/><\/p>\n<p>Python is a versatile and powerful programming language widely used for various applications, including data analysis, web development, automation, and more. One common task in programming is working with arrays (or lists in Python) and performing operations on them. Calculating the sum of all elements in an array is a fundamental task that demonstrates the basics of array manipulation and iteration in Python. This article will explore a Python program designed to find the sum of an array, providing a detailed explanation of the code and its functionality.<\/p>\n<h2>What are Arrays in Python<\/h2>\n<p>Python arrays are data structures like lists, which store homogenous data. Arrays store objects of the same datatype. Arrays are mutable, meaning that the data in an array can be changed and iterative, meaning each element in an array can be accessed one by one.<\/p>\n<h3>Method 1: Using a For Loop<\/h3>\n<p>One straightforward way to find the sum of all elements in an array is by using a for loop. This approach involves iterating over each element in the array and adding it to a running sum.<\/p>\n<p><strong>Example to find the sum of an Array using for Loop:<\/strong><\/p>\n<pre><code>def array_sum(arr):\n    total = 0\n    for num in arr:\n        total += num\n    return total\n\n# Example usage\narray = [1, 2, 3, 4, 5]\nprint(array_sum(array))  <\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>15<\/code><\/pre>\n<h3>Method 2: Using the sum() Function<\/h3>\n<p>Python provides a built-in sum() function that simplifies the process of calculating the sum of all elements in an array. This function takes an iterable (such as a list) as its argument and returns the sum of its elements.<\/p>\n<p><strong>Example to find the sum of an array using the sum() function:<\/strong><\/p>\n<pre><code>array = [1, 2, 3, 4, 5]\ntotal = sum(array)\nprint(total) <\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>15<\/code><\/pre>\n<h3>Method 3: Using the numpy Library<\/h3>\n<p>If you are working with large arrays or need to perform complex numerical operations, using the numpy library can be beneficial. Numpy provides an efficient sum() function that works on arrays and offers additional functionality for scientific computing.<\/p>\n<p><strong>Example to find the sum of an array using numpy library:<\/strong><\/p>\n<pre><code>import numpy as np\narray = np.array([1, 2, 3, 4, 5])\ntotal = np.sum(array)\nprint(total)  <\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>15<\/code><\/pre>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, we explored how to write a Python program to find the sum of an array. This simple yet essential task highlights the basics of working with arrays in Python and introduces fundamental programming concepts such as loops and built-in functions. Understanding these concepts is crucial for any aspiring programmer, as they form the foundation for more complex operations and algorithms. By mastering array manipulation, you can efficiently handle and process data, paving the way for more advanced programming challenges.<\/p>\n<p><strong>Note:<\/strong> Remember to choose the most appropriate method based on the size of your array and any additional requirements you may have.<\/p>\n<h2>FAQ&#8217;s related to Python Program to Find Sum of Array<\/h2>\n<p>Here are some of the FAQs related to Python Program to Find Sum of Array:<\/p>\n<p><strong>Q1: What is an array in Python?<\/strong><br \/>\nIn Python, an array is a collection of elements, typically of the same data type, stored in a single variable. The most commonly used array type in Python is the list, which can hold elements of different data types and allows for dynamic resizing.<\/p>\n<p><strong>Q2: How do you create an array in Python?<\/strong><br \/>\nYou can create an array in Python using the list data type. For example:<\/p>\n<pre><code>my_array = [1, 2, 3, 4, 5]<\/code><\/pre>\n<p>This creates a list named my_array with five elements.<\/p>\n<p><strong>Q3: How can you find the sum of elements in an array?<\/strong><br \/>\nYou can find the sum of elements in an array using a loop to iterate through the elements and accumulate the sum or by using Python\u2019s built-in sum() function. For example:<\/p>\n<pre><code>my_array = [1, 2, 3, 4, 5]\ntotal = sum(my_array)\nprint(total)  # Output: 15<\/code><\/pre>\n<p><strong>Q4: What is the time complexity of finding the sum of an array?<\/strong><br \/>\nThe time complexity of finding the sum of an array is O(n), where n is the number of elements in the array. This is because you need to iterate through each element once to calculate the sum.<\/p>\n<p><strong>Q5: Can the sum() function be used with arrays containing non-numeric elements?<\/strong><br \/>\nNo, the sum() function can only be used with arrays containing numeric elements. If the array contains non-numeric elements, Python will raise a TypeError.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python is a versatile and powerful programming language widely used for various applications, including data analysis, web development, automation, and more. One common task in programming is working with arrays (or lists in Python) and performing operations on them. Calculating the sum of all elements in an array is a fundamental task that demonstrates the [&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-16516","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>Python Program to Find Sum of Array<\/title>\n<meta name=\"description\" content=\"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.\" \/>\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\/python-program-to-find-sum-of-array\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Program to Find Sum of Array\" \/>\n<meta property=\"og:description\" content=\"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\" \/>\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-05-24T06:23:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-18T06:46:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Python Program to Find Sum of Array\",\"datePublished\":\"2023-05-24T06:23:32+00:00\",\"dateModified\":\"2024-06-18T06:46:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\"},\"wordCount\":656,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\",\"name\":\"Python Program to Find Sum of Array\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg\",\"datePublished\":\"2023-05-24T06:23:32+00:00\",\"dateModified\":\"2024-06-18T06:46:34+00:00\",\"description\":\"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#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\":\"Python Program to Find Sum of Array\"}]},{\"@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":"Python Program to Find Sum of Array","description":"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.","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\/python-program-to-find-sum-of-array\/","og_locale":"en_US","og_type":"article","og_title":"Python Program to Find Sum of Array","og_description":"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.","og_url":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-05-24T06:23:32+00:00","article_modified_time":"2024-06-18T06:46:34+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Python Program to Find Sum of Array","datePublished":"2023-05-24T06:23:32+00:00","dateModified":"2024-06-18T06:46:34+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/"},"wordCount":656,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/","url":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/","name":"Python Program to Find Sum of Array","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg","datePublished":"2023-05-24T06:23:32+00:00","dateModified":"2024-06-18T06:46:34+00:00","description":"In this article, we will explore different methods to find the sum of array elements in Python, along with examples for each approach.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1684909337056-Python%20Program%20to%20Find%20Sum%20of%20Array.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-sum-of-array\/#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":"Python Program to Find Sum of Array"}]},{"@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\/16516","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=16516"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16516\/revisions"}],"predecessor-version":[{"id":19136,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16516\/revisions\/19136"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=16516"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=16516"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=16516"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}