{"id":12187,"date":"2020-07-23T04:20:06","date_gmt":"2020-07-23T11:20:06","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12187"},"modified":"2023-12-01T03:55:56","modified_gmt":"2023-12-01T11:55:56","slug":"python-print-without-new-line","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/","title":{"rendered":"Python Print Without Newline: Step-by-Step Guide"},"content":{"rendered":"\n<p><em>To print without a new line in Python 3 add an extra argument to your print function telling the program that you don&#8217;t want your next string to be on a new line. Here&#8217;s an example: <code>print(\"Hello there!\", end = '')<\/code> The next print function will be on the same line. <\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>When you\u2019re programming, you may want to print a value to the screen, but keep it on the same line as the last value you printed. For example, you may want a user\u2019s first name and last name to appear on the same line. But how do you print without newline in Python?<\/p>\n\n\n\n<p>In this tutorial, we are going to break down how printing without a new line in Python works. Before we get started, though, let\u2019s explore the basics of how strings work in Python.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">String Refresher<\/h2>\n\n\n\n<p>Strings are a sequence of letters, numbers, symbols, and spaces. Strings are an important data type in most programming languages, especially Python. When you\u2019re working with strings, there are many cases where you will want to make them more readable through punctuation, adding new lines, or moving text onto the same lines.<\/p>\n\n\n\n<p>In Python, strings are defined as follows: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ourString = &quot;This is our string!&quot;<\/pre><\/div>\n\n\n\n<p>Alternatively, you can use single quotes <code>\u2018\u2019<\/code> to declare your string, as long as the string starts and ends with the same type of quote. However, if your string contains any single quotes, you may want to use double quotes instead and vice versa, otherwise your string will return an error. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Print Without Newline in Python<\/h2>\n\n\n\n<iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/TGX8Wg4g-WI\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"><\/iframe>\n\n\n\n<p>Typically, when you\u2019re printing strings in Python, they will appear on different lines. Here\u2019s an example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;First test string.&quot;)\nprint(&quot;Second test string.&quot;)<\/pre><\/div>\n\n\n\n<p>This code would return the following: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>First test string.\nSecond test string.<\/pre><\/div>\n\n\n\n<p>What if we want both of these strings to appear on the same line? Let\u2019s break down the two methods you can use to achieve this goal in both Python 2.x and Python 3.x. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Print Without Newline in Python 3.x<\/h3>\n\n\n\n<p>Printing without a new line is simple in Python 3. In order to print without newline in Python, you need to add an extra argument to your print function that will tell the program that you don\u2019t want your next string to be on a new line.<\/p>\n\n\n\n<p>Here\u2019s an example: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Hello there!&quot;, end = '')\nprint(&quot;It is a great day.&quot;)<\/pre><\/div>\n\n\n\n<p>The output for our code is:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Hello there!It is a great day.<\/pre><\/div>\n\n\n\n<p> <\/p>\n\n\n\n<p>Now we have our code printed on the same line.<\/p>\n\n\n\n<p>Notice that our code did not add a space between our two strings. But what if we want a space between our two new strings that are on the same line? All we have to do is add a space character in our <code>end<\/code> argument.<\/p>\n\n\n\n<p>In the above example, we had an empty string in our quote marks, which means that no spaces were added between our text on the new line. However, if we had added a space in the quote marks, we would have one in our code. In addition, you can add in whatever you want to the end parameter, and that will be what separates your strings on the new line. <\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Hello there!&quot;, end = ' It's Friday. ')\nprint(&quot;It is a great day.&quot;)<\/pre><\/div>\n\n\n\n<p> Our code would return:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Hello there! It's Friday. It is a great day.<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Print Without Newline in Python 2.x<\/h3>\n\n\n\n<p>If you want to print your text on the same line in Python 2, you should use a comma at the end of your print statement. Here\u2019s an example of this in action:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print &quot;Hello there!&quot;,\nprint &quot;It is a great day.&quot;<\/pre><\/div>\n\n\n\n<p>This code will return the following: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Hello there! It is a great day.<\/pre><\/div>\n\n\n\n<p>It is worth noting that, even though there were no new lines, a space character was still used to divide our text. This is useful because in most cases we will want our data to be spaced out. If we\u2019re merging two sentences, for example, we would want a space between them.<\/p>\n\n\n\n<p>That said, if you want to print text without a newline and without a space character, there is another approach you can use. By using the <code>sys<\/code> module\u2014which comes installed with Python\u2014you are able to print exactly what you ask the program to print. Here is an example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import sys\n\nsys.stdout.write(&quot;Hello there!&quot;)\nsys.stdout.write(&quot;It is a great day.&quot;)<\/pre><\/div>\n\n\n\n<p>The output for our code is as follows: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Hello there!It is a great day.<\/pre><\/div>\n\n\n\n<p>There is a lot going on in this code, so let\u2019s break it down. On the first line, we import our <code>sys<\/code> library, which has the function we need to print without a new line and without blank spaces. In the following lines, we tell the system to print out our text exactly as it is, without any spaces. So, we end up with the output we got above: our two strings on the same line, but with no space dividing them. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>It\u2019s that simple! In this tutorial, we have broken down how to print without newline in Python. As we have discussed, this programming technique can be useful if you need to display your data in a particular way that involves displaying all your text on the same line.<\/p>\n\n\n\n<p>In Python 2.x, we can add a comma to the end of our print statement to move our text onto the same line, and in Python 3.x we need to add an <code>end<\/code> parameter.<\/p>\n","protected":false},"excerpt":{"rendered":"To print without a new line in Python 3 add an extra argument to your print function telling the program that you don't want your next string to be on a new line. Here's an example: print(\"Hello there!\", end = '') The next print function will be on the same line. When you\u2019re programming, you&hellip;","protected":false},"author":240,"featured_media":12773,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-12187","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 Without Newline: Step-by-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.\" \/>\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-without-new-line\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Print Without Newline: Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\" \/>\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=\"2020-07-23T11:20:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:55:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\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-print-without-new-line\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Print Without Newline: Step-by-Step Guide\",\"datePublished\":\"2020-07-23T11:20:06+00:00\",\"dateModified\":\"2023-12-01T11:55:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\"},\"wordCount\":833,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\",\"name\":\"Python Print Without Newline: Step-by-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg\",\"datePublished\":\"2020-07-23T11:20:06+00:00\",\"dateModified\":\"2023-12-01T11:55:56+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg\",\"width\":1200,\"height\":675,\"caption\":\"Python Print Without Newline\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#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 Without Newline: 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 Print Without Newline: Step-by-Step Guide | Career Karma","description":"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.","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-without-new-line\/","og_locale":"en_US","og_type":"article","og_title":"Python Print Without Newline: Step-by-Step Guide","og_description":"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.","og_url":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-23T11:20:06+00:00","article_modified_time":"2023-12-01T11:55:56+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.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-print-without-new-line\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Print Without Newline: Step-by-Step Guide","datePublished":"2020-07-23T11:20:06+00:00","dateModified":"2023-12-01T11:55:56+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/"},"wordCount":833,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/","url":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/","name":"Python Print Without Newline: Step-by-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg","datePublished":"2020-07-23T11:20:06+00:00","dateModified":"2023-12-01T11:55:56+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"There may be times where you want to print text in Python on the same line, rather than on multiple lines. Learn how in this article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/python-print-without-newline.jpg","width":1200,"height":675,"caption":"Python Print Without Newline"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/#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 Without Newline: 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\/12187","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=12187"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12187\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12773"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12187"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12187"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12187"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}