{"id":19637,"date":"2021-01-04T17:19:24","date_gmt":"2021-01-05T01:19:24","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19637"},"modified":"2023-12-01T04:06:28","modified_gmt":"2023-12-01T12:06:28","slug":"python-modulo","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-modulo\/","title":{"rendered":"How to Use the Python Modulo Operator"},"content":{"rendered":"\n<p><em>The Python modulo operator calculates the remainder of dividing two values. This operator is represented by the percentage sign (%). The syntax for the modulo operator is: number1 % number2. The first number is divided by the second then the remainder is returned.<\/em><\/p>\n\n\n\n<p>If you\u2019ve spent some time using Python, you\u2019ll know that the programming language likes to use different symbols for arithmetic operations. Division is represented by a forward slash (\/); multiplication uses an asterisk (*).<\/p>\n\n\n\n<p>You may not be surprised to learn that the percentage sign in Python (%) does not mean \u201cpercent\u201d in Python. The percentage sign represents the modulo operator. It returns the remainder of dividing two numbers.<\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss what the modulo operator is and how it works. We\u2019ll walk through an example of this operator to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Modulo Operator<\/h2>\n\n\n\n<p>Modulo is a mathematical operation. It is used to calculate the remainder of a division sum. The Python modulo operator is the percentage sign (%). This sign finds the remainder from dividing the two numbers you specify.<\/p>\n\n\n\n<p>The syntax for the modulo operator is:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>example = 18 % 2<\/pre><\/div>\n\n\n\n<p>The modulo operator is placed between two numbers. In the above example, we assign the result of our sum to the <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">Python variable<\/a> &#8220;example&#8221;.<\/p>\n\n\n\n<p>If there is no remainder after dividing the first number by the second, the modulo operator will return 0.<\/p>\n\n\n\n<p>Let&#8217;s have a look at an example of how to use the modulo operator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Modulo Python Example<\/h2>\n\n\n\n<p>We&#8217;re building an application to help young people learn how to use remainders. Our program asks a user for two numbers and then divides the first by the second and returns the remainder.<\/p>\n\n\n\n<p>To start, let&#8217;s ask the user for two numbers:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>n1 = float(input(&quot;Please insert a number: &quot;))\nn2 = float(input(&quot;Please insert the number you want to divide by the previous number: &quot;))<\/pre><\/div>\n\n\n\n<p>We ask the user for two values and convert each of them to a floating-point number. We do this using a <a href=\"https:\/\/careerkarma.com\/blog\/python-input\/\">Python input() statement<\/a>. Now, we can use the modulo operator to calculate the remainder from dividing the two numbers a user specifies:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(n1 % n2)<\/pre><\/div>\n\n\n\n<p>Our program is now ready to use.<\/p>\n\n\n\n<p>Let\u2019s calculate the remainder of 19 divided by 2:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Please insert a number: 19\nPlease insert the number you want to divide by the previous number: 2<\/pre><\/div>\n\n\n\n<p>This code will divide 19 by 2 and return the remainder:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>1<\/pre><\/div>\n\n\n\n<p>The number two can fit into 19 for a total of 8 times. There is one left over, which is our remainder.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Modulo Operator with Integers<\/h2>\n\n\n\n<p>Modulo yields the remainder of a number in both floating-point number division and integer division. In our last example, we converted each number a user inserts into our program into a floating-point value.<\/p>\n\n\n\n<p>Let\u2019s try to find the remainder of an integer:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>a = 9\nb = 3\nanswer = a % b\n\nprint(answer)<\/pre><\/div>\n\n\n\n<p>This code calculates the remainder of 9 divided by 3. The response is: 0. This is because 9 divides by 3 equally. Our code has successfully calculated the remainder of these numbers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using Modulo to Find Odd and Even Numbers<\/h2>\n\n\n\n<p>The modulo operator allows you to determine if a number is odd or even.<\/p>\n\n\n\n<p>Remember from math class that numbers divisible by two are even and any other number is odd. Knowing this, we can write a program that checks if a number is odd or even.<\/p>\n\n\n\n<p>Let\u2019s write a program that checks if the age of an elementary student is an odd or even number. We\u2019ll start by asking a user to insert their age:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>student_age = int(input(\u201cWhat is your age? \u201d))<\/pre><\/div>\n\n\n\n<p>We use the <em>input()<\/em> method to ask a user for their age. We use the <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\">Python <em>int()<\/em><\/a> method to convert the value a user enters into a number.<\/p>\n\n\n\n<p>Next, we\u2019ll use a <a href=\"https:\/\/careerkarma.com\/blog\/python-if-else\/\">Python if statement<\/a> to check if the student\u2019s age has any remainders:<\/p>\n\n\n\n<p>We use the modulo operator to check if there is a remainder left over after dividing a student\u2019s age by two. If there is no remainder, the contents of our if statement are run. This will print out: \u201cYour age is an even number!\u201d to the console. Otherwise, the contents of our \u201celse\u201d statement are run.<\/p>\n\n\n\n<p>Let\u2019s run our program and insert the age 7:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>What is your age? 7\nYour age is an odd number!<\/pre><\/div>\n\n\n\n<p>Let\u2019s see what happens if we insert the age 6:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>What is your age? 6\nYour age is an even number!<\/pre><\/div>\n\n\n\n<p>Our code successfully checks whether a number is odd or even.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The modulo operator calculates the remainder of a division sum. It is commonly used to check whether a number is odd or even. The Python modulo operator is represented using the percent sign (%).<\/p>\n\n\n\n<p>You can learn more about mathematical operators in Python by reading our <a href=\"https:\/\/careerkarma.com\/blog\/python-math-operators\/\">guide to Python math operators<\/a>. Now you\u2019re ready to start using the modulo operator in Python like an expert developer!<\/p>\n\n\n\n<p>Do you want to learn more about coding in Python? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python guide<\/a>. You&#8217;ll find expert advice on what to learn and a list of top resources to help advance your learning.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python modulo operator calculates the remainder of dividing two values. This operator is represented by the percentage sign (%). The syntax for the modulo operator is: number1 % number2. The first number is divided by the second then the remainder is returned. If you\u2019ve spent some time using Python, you\u2019ll know that the programming&hellip;","protected":false},"author":240,"featured_media":19638,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-19637","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Use the Python Modulo Operator | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/python-modulo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use the Python Modulo Operator\" \/>\n<meta property=\"og:description\" content=\"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-modulo\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-05T01:19:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:06:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"664\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\/\/careerkarma.com\/blog\/python-modulo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Use the Python Modulo Operator\",\"datePublished\":\"2021-01-05T01:19:24+00:00\",\"dateModified\":\"2023-12-01T12:06:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/\"},\"wordCount\":784,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-modulo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/\",\"name\":\"How to Use the Python Modulo Operator | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg\",\"datePublished\":\"2021-01-05T01:19:24+00:00\",\"dateModified\":\"2023-12-01T12:06:28+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-modulo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg\",\"width\":1000,\"height\":664},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-modulo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use the Python Modulo Operator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use the Python Modulo Operator | Career Karma","description":"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.","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:\/\/careerkarma.com\/blog\/python-modulo\/","og_locale":"en_US","og_type":"article","og_title":"How to Use the Python Modulo Operator","og_description":"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.","og_url":"https:\/\/careerkarma.com\/blog\/python-modulo\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-05T01:19:24+00:00","article_modified_time":"2023-12-01T12:06:28+00:00","og_image":[{"width":1000,"height":664,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Use the Python Modulo Operator","datePublished":"2021-01-05T01:19:24+00:00","dateModified":"2023-12-01T12:06:28+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/"},"wordCount":784,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-modulo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/","url":"https:\/\/careerkarma.com\/blog\/python-modulo\/","name":"How to Use the Python Modulo Operator | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg","datePublished":"2021-01-05T01:19:24+00:00","dateModified":"2023-12-01T12:06:28+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python modulo operator calculates the remainder of a division sum. On Career Karma, learn how to use the modulo operator.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-modulo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/crissy-jarvis-cHhbULJbPwM-unsplash.jpg","width":1000,"height":664},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-modulo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"How to Use the Python Modulo Operator"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19637","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19637"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19637\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19638"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19637"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}