{"id":12893,"date":"2021-01-19T09:07:12","date_gmt":"2021-01-19T17:07:12","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12893"},"modified":"2023-12-01T04:08:49","modified_gmt":"2023-12-01T12:08:49","slug":"python-pass","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-pass\/","title":{"rendered":"Python Pass: A How to Guide"},"content":{"rendered":"\n<p><em>The Python pass statement is a placeholder keyword. It is used in empty code blocks such as a for or if statement to prevent against a syntax error. Python recognizes the section of code in which a pass statement is written as blank.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>You may encounter a situation where you want to include a placeholder in a class, function, or procedure. For instance, say you are writing a large program and want to include a <em>for<\/em> loop. This loop does not yet function because there is other code you need to write first.<\/p>\n\n\n\n<p>That\u2019s where the Python <em>pass<\/em> statement comes in. The pass statement is used as a placeholder for the future implementation of functions, classes, loops, and other blocks of code.<\/p>\n\n\n\n<p>This tutorial will discuss how to use the <em>pass<\/em> statement in Python. We\u2019ll walk through a few examples of the <em>pass<\/em> statement being used in a Python program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python pass Statement<\/h2>\n\n\n\n<p>The Python pass statement tells Python that a section of code is blank but should not return a syntax error. The Python interpreter reads and processes the pass statement. But, the pass keyword does not disrupt the flow of your program.<\/p>\n\n\n\n<p>Here\u2019s the syntax for the pass statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>pass<\/pre><\/div>\n\n\n\n<p>The <em>pass<\/em> statement takes in no arguments or variables. pass is a standalone keyword, similar to the <a href=\"https:\/\/careerkarma.com\/blog\/python-return\/\">Python return keyword<\/a>.<\/p>\n\n\n\n<p>There are a few scenarios where using the pass statement can be helpful. <\/p>\n\n\n\n<p>While there are no specific guidelines around how pass statements should be used, the statement is required syntactically to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Define empty classes and functions.<\/li><li>Pass over code within a try except block.<\/li><li>Pass over code in a loop.<\/li><\/ul>\n\n\n\n<p>None of these code blocks can contain no code. If you specify no code in any of these blocks, Python will return a syntax error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">pass Python Examples<\/h2>\n\n\n\n<p>Let&#8217;s look at a few examples of the Python pass statement.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bank Account Class Example<\/h3>\n\n\n\n<p>Say you\u2019re working on a program that stores bank account information for savings and checking accounts. We define the structure of the bank account information in <a href=\"https:\/\/careerkarma.com\/blog\/python-class\/\">Python classes<\/a>.<\/p>\n\n\n\n<p>Before you start working on the savings account class, you want to focus on the checking accounts class.<\/p>\n\n\n\n<p>To remind yourself to come back to the savings account class later, you could add a placeholder in the savings account class. <\/p>\n\n\n\n<p>Let&#8217;s add a pass statement to the savings account class. The pass statement is a placeholder while you finish working on the checking accounts class. Then, you can remove the placeholder and fill in the class with your code. Here&#8217;s the placeholder in action:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>class CheckingAccount(name):\n\tdef __init__(self, name):\n\t\tself.name = name\n\nclass SavingsAccount:\n\tpass<\/pre><\/div>\n\n\n\n<p>When our code runs, both the <em>CheckingAccount<\/em> and <em>SavingsAccount<\/em> classes are created. However, the <em>SavingsAccount<\/em> class has no purpose yet. The <em>pass<\/em> keyword is used to serve as a placeholder until we get around to adding code to execute in our class.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bookstore for Loop Example<\/h3>\n\n\n\n<p>Let\u2019s look at an example of the pass statement being used to pass over code in a loop. Say we are a bookstore owner, and we want to print out every title in our list of <em>habit formation<\/em> books to the console. But, we don\u2019t want to print out <em>Atomic Habits<\/em>, which is out of stock. We could use the following code to accomplish this task:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>books = ['The Power of Habit', 'Atomic Habits', 'Hooked: A Guide to Building Habit Forming Products', 'Mini Habits', 'The Miracle Morning']\n\nfor i in range(0, len(books)):\n\tif books[i] == 'Atomic Habits':\n\t\tpass\n\telse:\n\t\tprint(books[i])\n\nprint('Program complete.')<\/pre><\/div>\n\n\n\n<p>Our code returns: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>The Power of Habit\nHooked: A Guide to Building Habit Forming Products\nMini Habits\nThe Miracle Morning\nProgram complete.<\/pre><\/div>\n\n\n\n<p>On the first line of code, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">Python array<\/a>. This array contains the books in the <em>habit formation<\/em> category of our store.<\/p>\n\n\n\n<p>We then declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">Python <em>for<\/em> loop<\/a> which loops through every book in the <em>books<\/em> array.<\/p>\n\n\n\n<p>If the title of the book is <em>Atomic Habits<\/em>, our code should skip over it. Otherwise, our program should print out the title of the book to the console. Then, once our loop has finished running, our program prints out a message stating &#8220;<em>Program complete.&#8221;<\/em> to the console.<\/p>\n\n\n\n<p><em>pass<\/em> acts as a placeholder. This keyword allows us to skip over printing the name of the book <em>Atomic Habits<\/em> to the console.<\/p>\n\n\n\n<p>If we did not include a pass statement, our code would look like this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>...\nfor i in range(0, len(books)):\n\tif books[i] == 'Atomic Habits':\n\telse:\n\t\tprint(books[i])\n\u2026<\/pre><\/div>\n\n\n\n<p>When we run this code, Python returns an error because if statements cannot be empty. The error we receive is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>IndentationError: expected an indented block<\/pre><\/div>\n\n\n\n<p>Perhaps, later on, we intend on adding additional code here. For instance, we may want to print a message saying that the book is out of stock. Or perhaps we end up leaving the code as it is.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python pass statement is a placeholder that indicates you intend to add code to a section of your program later on. The pass statement syntax is: pass. You can use the pass statement in loops, if statements, or classes.<\/p>\n\n\n\n<p>This tutorial discussed how to use the <em>pass<\/em> statement in Python to include placeholder statements. We also talked about why a pass statement may be used.<\/p>\n\n\n\n<p>Are you passionate about learning how to code in Python? We have a How to Learn Python guide that we wrote to help beginner and intermediate developers start or continue their learning. Check out the guide on our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Learn Python page<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python pass statement is a placeholder keyword. It is used in empty code blocks such as a for or if statement to prevent against a syntax error. Python recognizes the section of code in which a pass statement is written as blank. You may encounter a situation where you want to include a placeholder&hellip;","protected":false},"author":240,"featured_media":12894,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-12893","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 Pass: A How to Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on 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-pass\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Pass: A How to Guide\" \/>\n<meta property=\"og:description\" content=\"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-pass\/\" \/>\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-19T17:07:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:08:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\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-pass\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Pass: A How to Guide\",\"datePublished\":\"2021-01-19T17:07:12+00:00\",\"dateModified\":\"2023-12-01T12:08:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/\"},\"wordCount\":852,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pass\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-pass\/\",\"name\":\"Python Pass: A How to Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg\",\"datePublished\":\"2021-01-19T17:07:12+00:00\",\"dateModified\":\"2023-12-01T12:08:49+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pass\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pass\/#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 Pass: A How to 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 Pass: A How to Guide | Career Karma","description":"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on 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-pass\/","og_locale":"en_US","og_type":"article","og_title":"Python Pass: A How to Guide","og_description":"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/python-pass\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-19T17:07:12+00:00","article_modified_time":"2023-12-01T12:08:49+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.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-pass\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Pass: A How to Guide","datePublished":"2021-01-19T17:07:12+00:00","dateModified":"2023-12-01T12:08:49+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/"},"wordCount":852,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-pass\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-pass\/","url":"https:\/\/careerkarma.com\/blog\/python-pass\/","name":"Python Pass: A How to Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg","datePublished":"2021-01-19T17:07:12+00:00","dateModified":"2023-12-01T12:08:49+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The pass statement allows Python developers to write placeholders in their code. Learn about the Python pass statement and how to use it on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-pass\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/blur-bottle-bright-building-273238.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-pass\/#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 Pass: A How to 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\/12893","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=12893"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12893\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12894"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}