{"id":12067,"date":"2020-10-21T23:54:23","date_gmt":"2020-10-22T06:54:23","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12067"},"modified":"2023-12-01T04:03:18","modified_gmt":"2023-12-01T12:03:18","slug":"python-input","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-input\/","title":{"rendered":"Python Input: A Step-By-Step Guide"},"content":{"rendered":"\n<p><em>The Python input() and raw_input() functions are used to collect user input. input() has replaced raw_input() in Python 3 and onward. Both functions return a user input as a string.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>Processing user input is a crucial part of programming.<\/p>\n\n\n\n<p>For example, you may want to ask a user their age so you can determine whether they should be allowed to use your site. Or you may want to ask a user to input their name so you can determine its length. Whatever data you need from a user, you\u2019ll need to find a way to get it in some fashion.<\/p>\n\n\n\n<p>That\u2019s where the Python <em>input()<\/em> function comes in. <em>Input()<\/em>, a built-in function in Python, allows coders to receive information through the keyboard, which they can process in a Python program. In this tutorial, we are going to break down the basics of Python <em>input().<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python User Input: A Guide<\/h2>\n\n\n\n<p>Accepting user input lets you retrieve values from the user while your program is running. This means that you do not need to depend on pre-existing values or the contents of a file in order to run your program.<\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python 3.x<\/a> uses a method called input() to retrieve user input. In Python 2.x, you must use the raw_input() method.<\/p>\n\n\n\n<p>When we call an input function, our program will pause. The program resumes after the user enters the text through the <a href=\"https:\/\/careerkarma.com\/blog\/python-for-beginners\/\">Python shell<\/a> or command line. For example, we may ask a user for their email address.<\/p>\n\n\n\n<p>Our program will pause until a user inserts text into the program and presses the <em>enter<\/em> key. The user must press the <em>enter<\/em> key. This key tells Python the user has finished inserting text on the shell.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python input() in Version 3<\/h2>\n\n\n\n<p>The input() function allows a user to insert a value into a program. input() returns a string value. You can convert the contents of an input using any data type. For instance, you can convert the value a user inserts to a floating-point number. input() is supported in Python 3.x.<\/p>\n\n\n\n<p>The input() function works in the same way as the raw_input() function. input() uses the following syntax:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>input(message)<\/pre><\/div>\n\n\n\n<p>The <em>message<\/em> is the string that you want to display when a user is prompted to input text. This message should tell a user that they are expected to perform an action. Otherwise, a user get confused at why the program is not continuing.<\/p>\n\n\n\n<p>Let&#8217;s ask the user to insert their email address into the shell:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>email = input(&quot;Enter your email address: &quot;)\nprint(&quot;To confirm, is your email address:&quot;, email)<\/pre><\/div>\n\n\n\n<p>We have used the input() method to ask a user to enter their email address. The message we enclosed in brackets is displayed to the console on the same line a user is expected to input text.<\/p>\n\n\n\n<p>We store the value the user inserts in a variable. This lets us refer back to the user&#8217;s input later in our program.<\/p>\n\n\n\n<p>Here is the result of our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter your email address: python3@test.com\nTo confirm, is your email address: python3@test.com<\/pre><\/div>\n\n\n\n<p>Our user was first asked to insert their email. Then, our program printed out a message which used the value the user inserted. This means that the value the user inserted was successfully stored in our program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Python raw_input() in Version 2<\/h2>\n\n\n\n<p>raw_input() accepts user input. The raw_input() method is the Python 2.x equivalent of Python 3&#8217;s input().<\/p>\n\n\n\n<p>The <em>raw_input()<\/em> function will prompt a user to enter text into the program. That data is collected the user presses the <em>return<\/em> key.<\/p>\n\n\n\n<p><em>raw_input()<\/em> takes <a href=\"https:\/\/careerkarma.com\/blog\/python-optional-arguments\/\">one parameter<\/a>: the message a user receives when they are prompted for input. This is the same as the input() method we discussed earlier.<\/p>\n\n\n\n<p>Here is an example of the Python <em>raw_input()<\/em> function in action which uses the input string <em>Enter your email address:<\/em><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>email = raw_input(&quot;Enter your email address: &quot;)\nprint &quot;To confirm, is your email address:&quot;, email<\/pre><\/div>\n\n\n\n<p>Our program asks us to enter our email address. After we enter a value, we hit enter. This lets us submit the email address into our program. The email address is saved in the <em>email<\/em> variable for later.<\/p>\n\n\n\n<p>When we run our code and give it our email address, our prompt will be printed like this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter your email address: test@test.com\nTo confirm, is your email address: test@test.com<\/pre><\/div>\n\n\n\n<p>Our program successfully stores the input value we have retrieved from the user.<\/p>\n\n\n\n<p>If you try to use raw_input() in Python 3, you&#8217;ll encounter the &#8220;NameError: name &#8216;raw_input&#8217; is not defined&#8221; error. <a href=\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-raw-input-is-not-defined\/\">Click here to read our guide on how to fix this error<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Input Types<\/h2>\n\n\n\n<p>By default, the <em>input()<\/em> and <em>raw_input()<\/em> functions will convert the data a user enters into a string. If you want to work with a string, this is not a problem. But if you\u2019re going to work with an integer or another data type, you\u2019ll need to change it manually.<\/p>\n\n\n\n<p>To do this, you should use the built-in Python data functions to change the type of data you have. Here\u2019s an example of a program that will prompt a user for their age, add one year onto their age, and returns the value:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>user_age = input(&quot;Enter your age: &quot;)\n\nfinal_user_age = int(user_age) + 1\n\nprint(&quot;On your next Birthday, you'll be:&quot;, final_user_age)<\/pre><\/div>\n\n\n\n<p>We convert the user\u2019s age to an integer using the <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\"><em>int()<\/em><\/a> function. Then, we add <em>1<\/em> to that age. On the final line of our code, we allow our value to print on the screen, alongside a short message. Here\u2019s our code in action:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Enter your age: 19\nOn your next Birthday, you'll be: 20<\/pre><\/div>\n\n\n\n<p>Alternatively, we could wrap our <em>input()<\/em> statement with the <em>int()<\/em> function. This will convert our value to a number immediately after the value has been retrieved. Here\u2019s an example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>user_age = int(input(&quot;Enter your age: &quot;))<\/pre><\/div>\n\n\n\n<p>We have converted the age value into an integer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <em>input()<\/em> and <em>raw_input()<\/em> functions have a wide array of uses in Python. If you\u2019re looking to get data from a user, you\u2019ll need to use these functions at some point.<\/p>\n\n\n\n<p>In this tutorial, we have broken down how the <em>input()<\/em> and <em>raw_input()<\/em> functions work in Python. Now you\u2019re an expert on collecting user input in Python! To learn more about programming in Python, read our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-python\/\">How to Code in Python guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The Python input() and raw_input() functions are used to collect user input. input() has replaced raw_input() in Python 3 and onward. Both functions return a user input as a string. Processing user input is a crucial part of programming. For example, you may want to ask a user their age so you can determine whether&hellip;","protected":false},"author":240,"featured_media":12069,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[12687],"class_list":{"0":"post-12067","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python","8":"tag-tutorial"},"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 Input: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work 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-input\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Input: A Step-By-Step Guide\" \/>\n<meta property=\"og:description\" content=\"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work in this article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-input\/\" \/>\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-10-22T06:54:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:03:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.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-input\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python Input: A Step-By-Step Guide\",\"datePublished\":\"2020-10-22T06:54:23+00:00\",\"dateModified\":\"2023-12-01T12:03:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/\"},\"wordCount\":982,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg\",\"keywords\":[\"tutorial\"],\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-input\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-input\/\",\"name\":\"Python Input: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg\",\"datePublished\":\"2020-10-22T06:54:23+00:00\",\"dateModified\":\"2023-12-01T12:03:18+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work in this article.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-input\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-input\/#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 Input: 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 Input: A Step-By-Step Guide | Career Karma","description":"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work 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-input\/","og_locale":"en_US","og_type":"article","og_title":"Python Input: A Step-By-Step Guide","og_description":"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work in this article.","og_url":"https:\/\/careerkarma.com\/blog\/python-input\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-22T06:54:23+00:00","article_modified_time":"2023-12-01T12:03:18+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.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-input\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python Input: A Step-By-Step Guide","datePublished":"2020-10-22T06:54:23+00:00","dateModified":"2023-12-01T12:03:18+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/"},"wordCount":982,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg","keywords":["tutorial"],"articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-input\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-input\/","url":"https:\/\/careerkarma.com\/blog\/python-input\/","name":"Python Input: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg","datePublished":"2020-10-22T06:54:23+00:00","dateModified":"2023-12-01T12:03:18+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"Python input functions help coders collect information from users. Learn more about how Python input() and raw_input() work in this article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-input\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-input\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-input\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/PYTHON-INPUT.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-input\/#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 Input: 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\/12067","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=12067"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12067\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12069"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}