{"id":13206,"date":"2021-01-05T16:00:59","date_gmt":"2021-01-06T00:00:59","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=13206"},"modified":"2023-12-01T04:06:31","modified_gmt":"2023-12-01T12:06:31","slug":"python-power","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-power\/","title":{"rendered":"Python Power: A Step-By-Step Guide"},"content":{"rendered":"\n<p><em>The ** operator and the pow() function calculate the power of a number in Python. The ** operator raises the number on the left to the power of the number on the right. The pow() function raises the first parameter to the power of the second parameter.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>Calculating the power of a number is a common mathematical operation. For instance, if you\u2019re creating a program that helps students in a sixth-grade math class revise powers, you would need a power function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Power<\/h2>\n\n\n\n<p>In Python programming, the power of a number can be calculated in two ways: using the <em>**<\/em> operator, and using the <em>pow()<\/em> function.<\/p>\n\n\n\n<p>This tutorial will discuss how to use both of these techniques to calculate the power of a number. We&#8217;ll walk through an example of how to use both the ** operator and the pow() method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Power: ** Operator<\/h2>\n\n\n\n<p>The Python <em>**<\/em> operator is used to raise a number in Python to the power of an exponent. In other words, <em>**<\/em> is the power operator in Python.<\/p>\n\n\n\n<p>The <em>**<\/em> operator requires two values to perform a calculation. Here\u2019s the syntax for the <em>**<\/em> operator:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>5 ** 2<\/pre><\/div>\n\n\n\n<p>Our program returns the following result: <em>25<\/em>.<\/p>\n\n\n\n<p>In this expression, 5 is raised 2nd power. Or, in other words, the number 5 is multiplied by itself 3 times.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Python ** Operator Example<\/h3>\n\n\n\n<p>Let\u2019s walk through an example to show how the <em>**<\/em> operator can be used in Python. Let\u2019s say we are creating an application that tests sixth grade math students on their knowledge of powers.<\/p>\n\n\n\n<p>To do so, we want to present a student with a math problem, then we want to ask them for the answer. Our program will then calculate the answer to the problem and compare it to the answer the user has inserted into the program.<\/p>\n\n\n\n<p>Here\u2019s an example program which would allow us to test sixth-grade math students on their knowledge of powers:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>number = 7\nexponent = 2\n\nstudent_answer = int(input(&quot;What is 7 to the power of 2?&quot;))\nanswer = 7 ** 2\n\nif student_answer == answer:\n\tprint(&quot;You're correct!&quot;)\nelse:\n\tprint(&quot;So close! 7 to the power of 2 is&quot;, answer)<\/pre><\/div>\n\n\n\n<p>When we execute our program and insert the answer 56, we get the following response:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>What is 7 to the power of 2?\n56\nSo close! 7 to the power of 2 is 49<\/pre><\/div>\n\n\n\n<p>As you can see, our program has calculated that our answer was incorrect, and returned a message with the correct answer.<\/p>\n\n\n\n<p>On the first line, we declare a variable called <em>number<\/em> which stores the number we want to raise to a mathematical power. Next, we declare <em>exponent<\/em> which is the exponent number to which we will raise the variable <em>number<\/em>.<\/p>\n\n\n\n<p>On the next line, we use the <a href=\"https:\/\/careerkarma.com\/blog\/python-input\/\">Python input() method<\/a> to ask the user: What is 7 to the power of 2?<\/p>\n\n\n\n<p>We use <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\">Python int() data type<\/a> conversion method to convert the user\u2019s response to an integer. This is necessary because input() returns a string, and we can only use the ** operator with numbers.<\/p>\n\n\n\n<p>Then, we calculate the answer to the question using the <em>**<\/em> operator. In this case, we use <em>7 ** 2<\/em> to calculate 7 to the power of 2.<\/p>\n\n\n\n<p>We declare an <em>if<\/em> statement that prints out the message &#8220;<em>You\u2019re correct!&#8221;<\/em> to the console. If a user gets the right answer, and prints out a message with the right answer if a user is incorrect.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Power Python: pow() Method<\/h2>\n\n\n\n<p>Python includes a built-in function that can be used to calculate powers: <em>pow()<\/em>. pow() accepts three parameters: a base number, an exponent to which the base is raised, and a modulo operator.<\/p>\n\n\n\n<p>The <em>pow()<\/em> method calculates a certain number to the power of another number. First, the method converts its argument to a floating-point number. Then, it computes the power.<\/p>\n\n\n\n<p>Here\u2019s the syntax for the Python <em>pow()<\/em> method:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>pow(base, exponent, modulus)<\/pre><\/div>\n\n\n\n<p>The <em>pow()<\/em> method accepts three parameters:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>base<\/strong> is the number raised to the power of the exponent (required)<\/li><li><strong>exponent<\/strong> is the number to which the base is raised (required)<\/li><li><strong>modulus<\/strong> executes a modulo calculation on the result of base <em>**<\/em> exponent. If modulus is specified, the base and exponent must be integers, and the exponent must be a positive value. (optional)<\/li><\/ul>\n\n\n\n<p>If the first two arguments are specified, the stated base to the power of the exponent is calculated.<\/p>\n\n\n\n<p>If the third argument is also specified, the stated base to the power of exponent is calculated. Then, pow() returns the modulus of the calculated number. This is a more advanced function with specific use cases, so we\u2019ll not discuss it in detail in this article.<\/p>\n\n\n\n<p>To learn more about the Python modulo operator, read our <a href=\"https:\/\/careerkarma.com\/blog\/python-modulo\/\">Python modulo operator guide<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Python pow() Method Example<\/h3>\n\n\n\n<p>Let\u2019s use our example from above to explain how the <em>pow()<\/em> method works. Say that we are creating a game to test sixth-graders on their knowledge powers in math.<\/p>\n\n\n\n<p>Our program asks a user for an answer to a question and calculates the answer. Then, our code compares whether the user\u2019s answer is the same as the one computed by the program.<\/p>\n\n\n\n<p>Instead of using the <em>**<\/em> operator, we could use <em>pow()<\/em> to calculate the power of the numbers in our code. Here\u2019s an example of <em>pow()<\/em> being used with the code we used for our sixth-grade power game:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>number = 7\nexponent = 2\n\nstudent_answer = int(input(&quot;What is 7 to the power of 2?&quot;))\nanswer = pow(7, 2)\n\nif student_answer == answer:\n\tprint(&quot;You're correct!&quot;)\nelse:\n\tprint(&quot;So close! 7 to the power of 2 is&quot;, answer)<\/pre><\/div>\n\n\n\n<p>Our code is similar to the first example with one difference. Instead of declaring <em>answer = 7 ** 2<\/em>, we assign the <em>answer<\/em> variable the value <em>pow(7, 2)<\/em>. If we insert the answer 49 into our code, the program returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>What is 7 to the power of 2?\n49\nYou're correct!<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The ** operator and pow() method raise a number to the power of another number. These are the Python power methods.<\/p>\n\n\n\n<p>This tutorial discussed how to use both the <em>**<\/em> operator and <em>pow()<\/em> to calculate powers in Python. We also covered an example of each method of calculating powers. Now you\u2019re equipped with the knowledge required to calculate powers in Python like a pro!<\/p>\n\n\n\n<p>If you&#8217;re looking for more learning resources to help you master Python, check out our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The ** operator and the pow() function calculate the power of a number in Python. The ** operator raises the number on the left to the power of the number on the right. The pow() function raises the first parameter to the power of the second parameter. Calculating the power of a number is a&hellip;","protected":false},"author":240,"featured_media":13207,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-13206","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>Python Power: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.\" \/>\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-power\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Power: A Step-By-Step Guide\" \/>\n<meta property=\"og:description\" content=\"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-power\/\" \/>\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-06T00:00:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:06:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Power: A Step-By-Step Guide\",\"datePublished\":\"2021-01-06T00:00:59+00:00\",\"dateModified\":\"2023-12-01T12:06:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/\"},\"wordCount\":938,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-power\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-power\/\",\"name\":\"Python Power: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg\",\"datePublished\":\"2021-01-06T00:00:59+00:00\",\"dateModified\":\"2023-12-01T12:06:31+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-power\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Python Power\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-power\/#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\":\"Python Power: A Step-By-Step Guide\"}]},{\"@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":"Python Power: A Step-By-Step Guide | Career Karma","description":"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.","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-power\/","og_locale":"en_US","og_type":"article","og_title":"Python Power: A Step-By-Step Guide","og_description":"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/python-power\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-06T00:00:59+00:00","article_modified_time":"2023-12-01T12:06:31+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-power\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Power: A Step-By-Step Guide","datePublished":"2021-01-06T00:00:59+00:00","dateModified":"2023-12-01T12:06:31+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/"},"wordCount":938,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-power\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-power\/","url":"https:\/\/careerkarma.com\/blog\/python-power\/","name":"Python Power: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg","datePublished":"2021-01-06T00:00:59+00:00","dateModified":"2023-12-01T12:06:31+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"Learn how to calculate the power of a number to another number using pow and the ** operator in your Python code with Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-power\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-power\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-power\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/person-touching-open-macbook-on-table-839465-1.jpg","width":1020,"height":680,"caption":"Python Power"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-power\/#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":"Python Power: A Step-By-Step Guide"}]},{"@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\/13206","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=13206"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/13206\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/13207"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=13206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=13206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=13206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}