{"id":22499,"date":"2020-09-09T16:17:23","date_gmt":"2020-09-09T23:17:23","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22499"},"modified":"2020-12-10T00:20:53","modified_gmt":"2020-12-10T08:20:53","slug":"python-hello-world","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-hello-world\/","title":{"rendered":"Python Hello World: A How-To Guide"},"content":{"rendered":"\n<p><em>The Python &#8220;Hello World&#8221; program is usually the first program a coder will write in Python. This program uses a print statement to display a string to the Python console. The program looks like: print(&#8220;Hello World&#8221;).<\/em><\/p>\n\n\n\n<p>One of the very first programs you can write to make sure your Python version works is \u201cHello World\u201d. There are two ways to create the program: in a terminal or in your code editor of choice (i.e. Visual Studio Code, Vim, etc.).<\/p>\n\n\n\n<p>Make sure you have <a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python 3<\/a> installed on your machine to get started.&nbsp;<\/p>\n\n\n\n<p>In this guide, we&#8217;re going to talk about how to write a &#8220;Hello World&#8221; program in the Python programming language.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python Hello World: Using the Terminal<\/h2>\n\n\n\n<p>In your terminal, type \u201cpython3\u201d to open the Python Interpreter. In most cases, this works, but some operating systems may use \u201cpython\u201d or \u201cpy\u201d as the command to open the Python Interpreter. As long as it starts a Python version greater than 3, you\u2019re fine!<\/p>\n\n\n\n<p>To learn more about interpreters, read our guide on <a href=\"https:\/\/careerkarma.com\/blog\/python-interpreter\/\">Python interpreters<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/OgeXXpcCVgSkh6gUY6h6IhJKrgkHXG34CkL5Rl6qvDhiAFiR5I9gHluJyLxODGfEjYlPm3iCag1IvzUYYRrw435K13pTDWmieQ550SlT-genOceF1vWiLNjufIxbmWPwHXsML5Cf\" alt=\"How the terminal should look after starting Python 3\"\/><figcaption> How the terminal should look after starting Python 3.&nbsp; <\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Hello World in Python: Your Instructions<\/h3>\n\n\n\n<p>Input print(\u201cHello World\u201d) into the Interpreter.<\/p>\n\n\n\n<p>This is a line of code. Each line of code is an instruction to the computer that it will follow when you run your program.<\/p>\n\n\n\n<p>Let&#8217;s break down this line of code:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>print() tells Python that you want to print a value.<\/li><li>&#8220;Hello World&#8221; is a <a href=\"https:\/\/careerkarma.com\/blog\/python-substring\/\">Python string<\/a>. A string is a series of characters. This string appears between the parentheses in our print() statement. We do this so that the print() statement knows we want to print the string.<\/li><\/ul>\n\n\n\n<p>Our &#8220;Hello World&#8221; string must appear in quotation marks. You can use single or double quotation marks. Quotation marks are necessary because they tell Python that you are working with a string.<\/p>\n\n\n\n<p>If we did not enclose our string in quotation marks, Python would not know the difference between our string and our code.<\/p>\n\n\n\n<p>&#8220;Hello World&#8221; should show up on the next line! Let&#8217;s run our code and see what happens:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/MR6IHGykg7URGdWNWVCreDDR8KXfh-qNZtBqylPtybLj7HJl5iRW4X9FCkd4Q9tWiENoXTmnIYk3XuFLLeftoxACi3hblBsU3tLc3PY8CSVe8cLylxAQP8RwfxFBy8f83pRXTVZT\" alt=\"\"\/><\/figure>\n\n\n\n<p>Our code executes successfully. We can tell because &#8220;Hello World&#8221; appears on the line immediately after our code. You have just written your first Python program!<\/p>\n\n\n\n<p>The &gt;&gt;&gt; indicates a line on which you have written code. Every time a program finishes running in the terminal, the &gt;&gt;&gt; will appear. When these arrows appear, you know that the terminal is ready to accept another line of code.<\/p>\n\n\n\n<p>These lines do not appear on the &#8220;Hello World&#8221; line. This is because this line has been created by the program itself rather than us, the coder.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Hello World Python: Code Editor (i.e. Visual Studio Code)<\/h2>\n\n\n\n<p>Open up your editor of choice and create a new file and save it as hello.py. In your file, input print(\u201cHello World\u201d) into the file and save it.&nbsp;<\/p>\n\n\n\n<p>This is the same code that we used earlier.<\/p>\n\n\n\n<p>In your terminal, navigate to the directory\/folder you saved your file. Use cd and ls to navigate from directory to directory.&nbsp; Use python3 hello.py to run the file. Hello World should show up on the next line.&nbsp;<\/p>\n\n\n\n<p>The \u201cplay\u201d button in the upper right hand corner of VS Code runs the current file. We can see the output of our code on the lower half of the screen. VS Code is the environment in which our code is written. But you may use a tool like Atom or Sublime Text or another programming environment.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/gpE-kzYGN4t1ZsRMV4rVDUIxkPR_CyTFkq2B1DexPcfVqm7Ui566e-0tfTH6qmx3MgaB2YcfeB4GdhdqkczFiA1HjMHwF0ouf8j001894aXz04xVdgyCYKRSWNdpBH-xq2FNEaAF\" alt=\"\"\/><\/figure>\n\n\n\n<p>That\u2019s it! You have successfully created a simple program in Python that shows that your environment works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s Next?<\/h2>\n\n\n\n<p>You can now say that you have written a program in the Python programming language. Congratulations!<\/p>\n\n\n\n<p>This program may seem simple, and it is. But without working on simple programs you&#8217;ll never get anywhere learning to code. Programs like &#8220;Hello World&#8221; teach the basics of coding so that you can build the knowledge you need to create more advanced programs.<\/p>\n\n\n\n<p>You may be wondering what&#8217;s next. Consider taking a look at Python variables. These are labels you can use to store values, like strings and numbers, in your code.<\/p>\n\n\n\n<p>For a challenge, try to print &#8220;Hello Kevin&#8221; to the console. All you need to do is change the text in the string. This will show you that Python will print out whatever appears in the string.<\/p>\n\n\n\n<p>For guidance on top Python learning resources, online courses, and books, 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 Python \"Hello World\" program is usually the first program a coder will write in Python. This program uses a print statement to display a string to the Python console. The program looks like: print(\"Hello World\"). One of the very first programs you can write to make sure your Python version works is \u201cHello World\u201d.&hellip;","protected":false},"author":77,"featured_media":17510,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-22499","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.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Python: Hello World | Career Karma<\/title>\n<meta name=\"description\" content=\"Learn how to create a small program in Python to test your environment 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-hello-world\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Hello World: A How-To Guide\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a small program in Python to test your environment on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-hello-world\/\" \/>\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-09-09T23:17:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-10T08:20:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"666\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\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=\"Christina Kopecky\" \/>\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-hello-world\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"Python Hello World: A How-To Guide\",\"datePublished\":\"2020-09-09T23:17:23+00:00\",\"dateModified\":\"2020-12-10T08:20:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/\"},\"wordCount\":772,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/nasa-Q1p7bh3SHj8-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/\",\"name\":\"Python: Hello World | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/nasa-Q1p7bh3SHj8-unsplash.jpg\",\"datePublished\":\"2020-09-09T23:17:23+00:00\",\"dateModified\":\"2020-12-10T08:20:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Learn how to create a small program in Python to test your environment on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/nasa-Q1p7bh3SHj8-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/nasa-Q1p7bh3SHj8-unsplash.jpg\",\"width\":1000,\"height\":666,\"caption\":\"View of cities lit up on Earth captured from outer space\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python-hello-world\\\/#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 Hello World: 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\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\\\/\\\/www.linkedin.com\\\/in\\\/cmvnk\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/christina-kopecky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python: Hello World | Career Karma","description":"Learn how to create a small program in Python to test your environment 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-hello-world\/","og_locale":"en_US","og_type":"article","og_title":"Python Hello World: A How-To Guide","og_description":"Learn how to create a small program in Python to test your environment on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/python-hello-world\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-09T23:17:23+00:00","article_modified_time":"2020-12-10T08:20:53+00:00","og_image":[{"width":1000,"height":666,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"Python Hello World: A How-To Guide","datePublished":"2020-09-09T23:17:23+00:00","dateModified":"2020-12-10T08:20:53+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/"},"wordCount":772,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-hello-world\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/","url":"https:\/\/careerkarma.com\/blog\/python-hello-world\/","name":"Python: Hello World | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg","datePublished":"2020-09-09T23:17:23+00:00","dateModified":"2020-12-10T08:20:53+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Learn how to create a small program in Python to test your environment on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-hello-world\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/nasa-Q1p7bh3SHj8-unsplash.jpg","width":1000,"height":666,"caption":"View of cities lit up on Earth captured from outer space"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-hello-world\/#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 Hello World: 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\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22499","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\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=22499"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22499\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17510"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22499"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22499"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22499"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}