{"id":29182,"date":"2021-02-11T10:50:23","date_gmt":"2021-02-11T18:50:23","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29182"},"modified":"2022-07-20T08:35:01","modified_gmt":"2022-07-20T15:35:01","slug":"python-print","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-print\/","title":{"rendered":"Python print(): A Complete Guide"},"content":{"rendered":"\n<p>Suppose you have a variable in a Python program. You may want to know the content that the variable points to, to be able to figure out whether your program is running as planned. Or, when you are writing a quick program that does not rely on a graphical interface for input\/output, you will want to show some quick prompts to the user for navigating through the program.<br><\/p>\n\n\n\n<p>That\u2019s where the Python <code>print()<\/code> method comes in. The <code>print()<\/code> method allows you to print an object \u2014 which can be something as basic as a string too \u2014 to the standard output device, which usually is the command prompt.<br><\/p>\n\n\n\n<p>This tutorial discusses how to use the Python <code>print()<\/code> method to print any object to the standard output. Let\u2019s walk through an example to help you get started with this method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python print() Method<\/h2>\n\n\n\n<p>The Python <code>print()<\/code> method prints an object to the standard output. You can print any object, including lists and strings, using the print command.<br><\/p>\n\n\n\n<p>The syntax for the <code>print()<\/code> method is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(object1, object2, object3, ..., sep=' ', end='\\n', file=sys.stdout, flush=False)<\/pre><\/div>\n\n\n\n<p>The above command takes a number of arguments:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>objects:<\/strong> Receives the objects that are to be printed. These can be instances of user-defined classes or primitive objects like integers or strings.<\/li><li><strong>sep:<\/strong> Defines a separator between multiple objects. It is optional and works only if more than one object has been passed in for printing. Its default value is \u2018 \u2019 or a single space character.<\/li><li><strong>end:<\/strong> Defines a character that will be appended at the end of the printed output. It is optional, and its default value is \u2018\\n\u2019 meaning a plain print(&#8220;Hey&#8221;) command will print Hey and move the cursor to a new line.<\/li><li><strong>file:<\/strong> Another optional parameter that can be used to direct the output to a file or a similar output stream. The default value is sys.stdout, which stands for the command line output.<\/li><li><strong>flush:<\/strong> A boolean parameter, which specifies if the output will be flushed or not. A flushed output means that all print commands will directly take effect. In the other case, the system will try to accumulate consecutive print commands to execute them at once and improve performance. Its default value is False. While this is not something that you may use very often, it does come handy when creating complex applications.<\/li><\/ul>\n\n\n\n<p>You might notice that we use a \u2018sep=\u2019 prefix for specifying our separating character, and an \u2018end=\u2019 prefix for specifying the trailing character. The reason behind this is that the <code>print()<\/code> command can take in multiple arguments for printing. If we were to pass the two formatting characters (sep and end) without their prefixes, the command would treat them as objects to be printed, and would print them on the output device.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">print() Python Example<\/h2>\n\n\n\n<p>The best example of the <code>print()<\/code> statement in Python is the traditional \u201cHello World!\u201d program:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Hello World!&quot;)\n# Hello World!<\/pre><\/div>\n\n\n\n<p>If you are looking to print multiple strings one after another, here\u2019s how you can pass in multiple arguments:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;This is one.&quot;, &quot;This is two.&quot;)\n# This is one. This is two.<\/pre><\/div>\n\n\n\n<p>You can try changing the separator between the two objects like this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;This is one.&quot;, &quot;This is two.&quot;, sep='|')\n# This is one. | This is two.<\/pre><\/div>\n\n\n\n<p>This can come handy when you are printing multiple objects together, like when displaying a receipt\u2019s details, or when displaying multiple details of an object together.<br><\/p>\n\n\n\n<p>Now, let\u2019s take things up a level and try to print the contents of a variable:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>first_name = &quot;John&quot;\nlast_name = &quot;Doe&quot;\n\nprint(first_name, last_name, sep=' ')\n# John Doe<\/pre><\/div>\n\n\n\n<p>Let\u2019s try calling two <code>print()<\/code> commands back to back:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Hello&quot;)\nprint(&quot;World&quot;)\n# Hello\n# World<\/pre><\/div>\n\n\n\n<p>What if you wanted them on the same line? You can do that with the end parameter:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Hello&quot;, end=' ')\nprint(&quot;World&quot;)\n# Hello World<\/pre><\/div>\n\n\n\n<p>Occasionally, you might encounter situations where you may need to print the contents of some variables to a file. This might be needed in a large application which can not be monitored\/debugged in real-time. Such files are called logs, and there are advanced libraries to help do this. For a relatively smaller application, you can use the print statement to generate adequate logs. Here\u2019s how you can do that:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>user = &quot;John&quot;\n\nwith open(logs.txt', 'w') as f:\n    print(&quot;User is &quot; + user, file=f)<\/pre><\/div>\n\n\n\n<p>However, this is not a very popular method of writing to files, as other optimized methods like <code>file.write()<\/code> exist for the same purpose.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Making Objects Print-Friendly<\/h2>\n\n\n\n<p>Objects in Python are instances of classes. They can contain more than one member variables and methods. This means that printing an object which has two member variables is not as simple as printing a plain string. There needs to be some way with which the print command can figure out what to do when an object of unknown type is passed in to be printed.<br><\/p>\n\n\n\n<p>This is where the __str__ method comes in. This is a special method that can be defined in any class and is called by the print method when an object is passed in for printing. This method returns a string, which can be easily printed via the print command. This is how a general class with an __str__ method looks like:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>class Test:\n    def __init__(self, a, b, c):\n        self.a = a\n        self.b = b\n        self.c = c\n    \n    def __str__(self):\n        return &quot;In the str method: a is % s, b is % s, c is % s&quot; % (self.a, self.b, self.c)<\/pre><\/div>\n\n\n\n<p>The __str__ method is often used to fit the data of all the member variables into a template string that can be printed out for debugging purposes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Python <code>print()<\/code> method outputs the passed objects to the set output device, which is by default the command line prompt. It takes in options like end and sep to help you format your output for better readability.<br><\/p>\n\n\n\n<p>This tutorial discussed, with reference to examples, the basics of Python <code>print()<\/code> and how to write classes that can support accessible print outputs. Now you are ready to start using the <code>print()<\/code> method like a Python pro!<\/p>\n","protected":false},"excerpt":{"rendered":"Suppose you have a variable in a Python program. You may want to know the content that the variable points to, to be able to figure out whether your program is running as planned. Or, when you are writing a quick program that does not rely on a graphical interface for input\/output, you will want&hellip;","protected":false},"author":113,"featured_media":27218,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-29182","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 print(): A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!\" \/>\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-print\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python print(): A Complete Guide\" \/>\n<meta property=\"og:description\" content=\"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-print\/\" \/>\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-02-11T18:50:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:35:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"679\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kumar Harsh\" \/>\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=\"Kumar Harsh\" \/>\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-print\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/\"},\"author\":{\"name\":\"Kumar Harsh\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400\"},\"headline\":\"Python print(): A Complete Guide\",\"datePublished\":\"2021-02-11T18:50:23+00:00\",\"dateModified\":\"2022-07-20T15:35:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/\"},\"wordCount\":898,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-print\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-print\/\",\"name\":\"Python print(): A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg\",\"datePublished\":\"2021-02-11T18:50:23+00:00\",\"dateModified\":\"2022-07-20T15:35:01+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400\"},\"description\":\"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-print\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg\",\"width\":1020,\"height\":679,\"caption\":\"Some code in a dark-themed editor on a laptop screen\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print\/#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 print(): A Complete 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\/c34979f56af7fa3dfafc6ab2aa4ac400\",\"name\":\"Kumar Harsh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg\",\"caption\":\"Kumar Harsh\"},\"description\":\"Kumar is a young technical writer, covering topics like JavaScript, Python, Ruby and Web Performance. He is currently working towards a bachelors degree in Computer Science and Engineering at National Institute of Technology Patna. Along with writing, he has also worked in software development roles with several start-ups and corporations alike. He joined the Career Karma team in January 2021.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/kumar-harsh\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python print(): A Complete Guide | Career Karma","description":"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!","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-print\/","og_locale":"en_US","og_type":"article","og_title":"Python print(): A Complete Guide","og_description":"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!","og_url":"https:\/\/careerkarma.com\/blog\/python-print\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-02-11T18:50:23+00:00","article_modified_time":"2022-07-20T15:35:01+00:00","og_image":[{"width":1020,"height":679,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg","type":"image\/jpeg"}],"author":"Kumar Harsh","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kumar Harsh","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-print\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/"},"author":{"name":"Kumar Harsh","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400"},"headline":"Python print(): A Complete Guide","datePublished":"2021-02-11T18:50:23+00:00","dateModified":"2022-07-20T15:35:01+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/"},"wordCount":898,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-print\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-print\/","url":"https:\/\/careerkarma.com\/blog\/python-print\/","name":"Python print(): A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg","datePublished":"2021-02-11T18:50:23+00:00","dateModified":"2022-07-20T15:35:01+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400"},"description":"Looking to learn how Python print works? Read the article to understand the method in detail, and learn how to write classes that are accessible and easy to debug!","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-print\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-print\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-print\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/christopher-gower-m_HRfLhgABo-unsplash.jpg","width":1020,"height":679,"caption":"Some code in a dark-themed editor on a laptop screen"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-print\/#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 print(): A Complete 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\/c34979f56af7fa3dfafc6ab2aa4ac400","name":"Kumar Harsh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg","caption":"Kumar Harsh"},"description":"Kumar is a young technical writer, covering topics like JavaScript, Python, Ruby and Web Performance. He is currently working towards a bachelors degree in Computer Science and Engineering at National Institute of Technology Patna. Along with writing, he has also worked in software development roles with several start-ups and corporations alike. He joined the Career Karma team in January 2021.","url":"https:\/\/careerkarma.com\/blog\/author\/kumar-harsh\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29182","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\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29182"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29182\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/27218"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29182"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29182"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29182"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}