{"id":17002,"date":"2023-06-30T07:32:28","date_gmt":"2023-06-30T07:32:28","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=17002"},"modified":"2023-06-30T07:32:28","modified_gmt":"2023-06-30T07:32:28","slug":"python-program-to-find-lcm-of-two-numbers","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/","title":{"rendered":"Python Program to Find LCM of Two Numbers"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+\" alt=\"\" \/><\/p>\n<p>The term &quot;Least Common Multiple&quot; (LCM) refers to the smallest number that is divisible by all the given numbers in a collection of integers in mathematics. In C++, there are multiple techniques available to calculate the LCM of two numbers, such as using the &quot;if condition,&quot; &quot;while loop,&quot; or the GCD (Greatest Common Divisor) method, among others.<\/p>\n<h2>What is the LCM of two numbers in Python?<\/h2>\n<p>The LCM, also known as the least common multiple, is a mathematical concept used to find the smallest number (denoted as LCM(a, b) or lcm(a, b)) that is divisible by both given numbers (n1 and n2). It represents a common multiple that exists in both numbers.<\/p>\n<p>Flow Chart of LCM of two numbers in Python<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109805665-1-01%20%2844%29.png\" alt=\"\" \/><\/p>\n<p>Algorithm of Python program to find LCM of two numbers:<br \/>\n<strong>Step 1:<\/strong> Take two inputs from the user n1 and n2<br \/>\n<strong>Step 2:<\/strong> Store the smallest common multiple of n1 and n2 into the max variable.<br \/>\n<strong>Step 3:<\/strong> Validate whether the max variable is divisible by n1 and n2, and print the max as the LCM of two numbers.<br \/>\n<strong>Step 4:<\/strong> Otherwise, the max value is updated by 1 on every iteration, and jump to step 3 to check the divisibility of the max variable.<br \/>\n<strong>Step 5:<\/strong> Terminate the program<\/p>\n<h2>Methods of Python Program to find LCM of two numbers<\/h2>\n<p>There are several methods to find the LCM (Least Common Multiple) of two numbers in Python. Here are a few commonly used approaches:<\/p>\n<h2>Using the GCD (Greatest Common Divisor) method:<\/h2>\n<p>I- mport the math module.<\/p>\n<ul>\n<li>Use the math.gcd() function to find the GCD of the two numbers.<\/li>\n<li>Calculate the LCM using the formula: LCM(a, b) = (a * b) \/ GCD(a, b).<\/li>\n<\/ul>\n<h3>Code Implementation:<\/h3>\n<pre><code>import math\n\ndef lcm(a, b):\n    gcd = math.gcd(a, b)\n    lcm = (a * b) \/\/ gcd\n    return lcm<\/code><\/pre>\n<h2>Using a loop:<\/h2>\n<ul>\n<li>Start with the larger of the two numbers.<\/li>\n<li>Use a loop to increment by the larger number until a common multiple is found.<\/li>\n<li>Check if the current number is divisible by both numbers.<\/li>\n<li>Return the first number found that satisfies this condition.<\/li>\n<\/ul>\n<h3>Code Implementation:<\/h3>\n<pre><code>def lcm(a, b):\n    max_num = max(a, b)\n    while True:\n        if max_num % a == 0 and max_num % b == 0:\n            return max_num\n        max_num += 1<\/code><\/pre>\n<h2>Using the LCM formula:<\/h2>\n<pre><code>Calculate the product of the two numbers.\nDivide the product by their GCD to get the LCM.<\/code><\/pre>\n<h3>Code Implementation:<\/h3>\n<pre><code>def lcm(a, b):\n    lcm = (a * b) \/\/ math.gcd(a, b)\n    return lcm<\/code><\/pre>\n<p>These methods can be used to find the LCM of any two given numbers in Python. Choose the method that suits your requirements and preferences.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIn conclusion, finding the LCM (Least Common Multiple) of two numbers is a common mathematical operation, and Python provides various methods to accomplish this task. By utilizing the GCD (Greatest Common Divisor), loop, or LCM formula, you can calculate the LCM efficiently. These methods offer flexibility, allowing you to choose the approach that best fits your specific requirements.<\/p>\n<h2>FAQs related to Python Program to Find LCM of two numbers<\/h2>\n<p>Here are some frequently asked questions (FAQs) related to Python Program to Find LCM of two numbers:<\/p>\n<p><strong>Q1. How can I find the LCM of two numbers in Python?<\/strong><br \/>\nYou can use methods like the GCD method, loop method, or the LCM formula to find the LCM of two numbers in Python.<\/p>\n<p><strong>Q2. What is the GCD, and how is it related to the LCM?<\/strong><br \/>\nThe GCD (Greatest Common Divisor) is the largest positive integer that divides both of the given numbers without leaving a remainder. The LCM is calculated using the GCD in some methods, such as the LCM formula.<\/p>\n<p><strong>Q3. Can I use the LCM function from a math library in Python?<\/strong><br \/>\nPython&#8217;s math library does not have a built-in LCM function. However, you can utilize the math.gcd() function from the math library to help calculate the LCM.<\/p>\n<p><strong>Q4. Are there any Python libraries specifically designed for LCM calculations?<\/strong><br \/>\nAlthough Python does not have dedicated libraries for LCM calculations, you can create your own reusable functions or import the math library for GCD calculations to find the LCM efficiently.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The term &quot;Least Common Multiple&quot; (LCM) refers to the smallest number that is divisible by all the given numbers in a collection of integers in mathematics. In C++, there are multiple techniques available to calculate the LCM of two numbers, such as using the &quot;if condition,&quot; &quot;while loop,&quot; or the GCD (Greatest Common Divisor) method, [&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-17002","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 LCM of Two Numbers<\/title>\n<meta name=\"description\" content=\"The term &quot;Least Common Multiple&quot; (LCM) refers to the smallest number that is divisible by all the given numbers.\" \/>\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-lcm-of-two-numbers\/\" \/>\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 LCM of Two Numbers\" \/>\n<meta property=\"og:description\" content=\"The term &quot;Least Common Multiple&quot; (LCM) refers to the smallest number that is divisible by all the given numbers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\" \/>\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-06-30T07:32:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.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<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-lcm-of-two-numbers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Python Program to Find LCM of Two Numbers\",\"datePublished\":\"2023-06-30T07:32:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\"},\"wordCount\":625,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\",\"name\":\"Python Program to Find LCM of Two Numbers\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+\",\"datePublished\":\"2023-06-30T07:32:28+00:00\",\"description\":\"The term \\\"Least Common Multiple\\\" (LCM) refers to the smallest number that is divisible by all the given numbers.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#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 LCM of Two Numbers\"}]},{\"@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 LCM of Two Numbers","description":"The term \"Least Common Multiple\" (LCM) refers to the smallest number that is divisible by all the given numbers.","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-lcm-of-two-numbers\/","og_locale":"en_US","og_type":"article","og_title":"Python Program to Find LCM of Two Numbers","og_description":"The term \"Least Common Multiple\" (LCM) refers to the smallest number that is divisible by all the given numbers.","og_url":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-06-30T07:32:28+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Python Program to Find LCM of Two Numbers","datePublished":"2023-06-30T07:32:28+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/"},"wordCount":625,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/","url":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/","name":"Python Program to Find LCM of Two Numbers","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+","datePublished":"2023-06-30T07:32:28+00:00","description":"The term \"Least Common Multiple\" (LCM) refers to the smallest number that is divisible by all the given numbers.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688109672553-Python%20Program%20to%20Find%20LCM%20of%20Two%20Numbers.jpg+"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/python-program-to-find-lcm-of-two-numbers\/#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 LCM of Two Numbers"}]},{"@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\/17002","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=17002"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17002\/revisions"}],"predecessor-version":[{"id":17003,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17002\/revisions\/17003"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=17002"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=17002"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=17002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}