{"id":586,"date":"2023-06-30T22:39:43","date_gmt":"2023-06-30T17:09:43","guid":{"rendered":"https:\/\/dashingknights.com\/news\/?page_id=586"},"modified":"2023-06-30T22:41:59","modified_gmt":"2023-06-30T17:11:59","slug":"python-user-input-input-function-explanation","status":"publish","type":"page","link":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/","title":{"rendered":"Reading User Input in Python"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to User Input in Python<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https:\/\/dashingknights.com\/news\/python-global-variable-modification-code-output-analysis\/\">Python<\/a>, reading user input is a fundamental aspect of interactive programming. It allows users to provide input to the program during runtime, enabling dynamic and personalized interactions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The <a href=\"https:\/\/www.w3schools.com\/python\/ref_func_input.asp\" target=\"_blank\" rel=\"noreferrer noopener\">input()<\/a> Function<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To read user input in Python, the commonly used code snippet is <code><a href=\"https:\/\/www.w3schools.com\/python\/ref_func_input.asp\" target=\"_blank\" rel=\"noreferrer noopener\">input()<\/a><\/code>. It is a built-in function that facilitates the process of receiving input from the user.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Functionality of input()<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>input()<\/code> function prompts the user for input and waits for them to enter a value. It reads the user&#8217;s input as a string and returns the entered value.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Usage and Examples<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To use the <code>input()<\/code> function, simply call it in your code. For example, <\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro padding-bottom-disabled\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" data-code=\"user_input = input(&quot;Enter your name: &quot;)\" style=\"color:#d8dee9ff;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki nord\" style=\"background-color: #2e3440ff\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D8DEE9FF\">user_input <\/span><span style=\"color: #81A1C1\">=<\/span><span style=\"color: #D8DEE9FF\"> <\/span><span style=\"color: #88C0D0\">input<\/span><span style=\"color: #ECEFF4\">(<\/span><span style=\"color: #ECEFF4\">&quot;<\/span><span style=\"color: #A3BE8C\">Enter your name: <\/span><span style=\"color: #ECEFF4\">&quot;<\/span><span style=\"color: #ECEFF4\">)<\/span><\/span><\/code><\/pre><span style=\"display:flex;align-items:flex-end;padding:10px;width:100%;justify-content:flex-end;background-color:#2e3440ff;color:#c8d0e0;font-size:12px;line-height:1;position:relative\">Python<\/span><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"> Here <code>user_input<\/code> will prompt the user to enter their name and store the input in the variable <code>user_input<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Customizing the Prompt<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>input()<\/code> function also accepts an optional string argument, which serves as a prompt to guide the user. Including a prompt provides context and instructions for the expected input.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-orange-color\">Which code snippet is commonly used to read user input in Python?<\/mark><\/strong><\/p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><strong>Options:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong> A. get()<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>B. read()<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>C. input()<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>D. fetch()<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">correct answer is option C. <code>input()<\/code><\/mark><\/strong>. In Python, the <code>input()<\/code> function is commonly used to read user input from the command line. It takes an optional prompt as an argument and returns the input as a string.<\/p>\n\n\n\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-3928955477472816\"\n     crossorigin=\"anonymous\"><\/script>\n<!-- side-nav -->\n<ins class=\"adsbygoogle\"\n     style=\"display:block\"\n     data-ad-client=\"ca-pub-3928955477472816\"\n     data-ad-slot=\"9554975097\"\n     data-ad-format=\"auto\"\n     data-full-width-responsive=\"true\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction to User Input in Python In Python, reading user input is a fundamental aspect of interactive programming. It allows users to provide input to the program during runtime, enabling dynamic and personalized interactions. The input() Function To read user input in Python, the commonly used code snippet is input(). It is a built-in function [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":587,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","_glsr_average":0,"_glsr_ranking":0,"_glsr_reviews":0,"footnotes":""},"class_list":["post-586","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Reading User Input in Python &#171; News Beat<\/title>\n<meta name=\"description\" content=\"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering User Input in Python: Exploring the input() Function\" \/>\n<meta property=\"og:description\" content=\"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/\" \/>\n<meta property=\"og:site_name\" content=\"News Beat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/groups\/609976580889610\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-30T17:11:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Mastering User Input in Python: Exploring the input() Function\" \/>\n<meta name=\"twitter:description\" content=\"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1\" \/>\n<meta name=\"twitter:site\" content=\"@DashingKnights\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Reading User Input in Python &#171; News Beat","description":"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming","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:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/","og_locale":"en_US","og_type":"article","og_title":"Mastering User Input in Python: Exploring the input() Function","og_description":"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming","og_url":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/","og_site_name":"News Beat","article_publisher":"https:\/\/www.facebook.com\/groups\/609976580889610","article_modified_time":"2023-06-30T17:11:59+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_title":"Mastering User Input in Python: Exploring the input() Function","twitter_description":"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming","twitter_image":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1","twitter_site":"@DashingKnights","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#article","isPartOf":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/"},"author":{"name":"Depak","@id":"https:\/\/dashingknights.com\/news\/#\/schema\/person\/1b1fb25832e42bc14f058e78c40fc91f"},"headline":"Reading User Input in Python","datePublished":"2023-06-30T17:09:43+00:00","dateModified":"2023-06-30T17:11:59+00:00","mainEntityOfPage":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/"},"wordCount":221,"commentCount":0,"publisher":{"@id":"https:\/\/dashingknights.com\/news\/#organization"},"image":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/","url":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/","name":"Reading User Input in Python &#171; News Beat","isPartOf":{"@id":"https:\/\/dashingknights.com\/news\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#primaryimage"},"image":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1","datePublished":"2023-06-30T17:09:43+00:00","dateModified":"2023-06-30T17:11:59+00:00","description":"Discover the commonly used code snippet, input(), for reading user input in Python. Explore its functionality and learn how it facilitates interactive programming. Enhance your Python skills by understanding how to prompt users for input and retrieve their responses as strings. #Python #UserInput #InteractiveProgramming","breadcrumb":{"@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#primaryimage","url":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1","contentUrl":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/python-read-user-input-method.webp?fit=512%2C512&ssl=1","width":512,"height":512,"caption":"python-read-user-input-method"},{"@type":"BreadcrumbList","@id":"https:\/\/dashingknights.com\/news\/python-user-input-input-function-explanation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dashingknights.com\/news\/"},{"@type":"ListItem","position":2,"name":"Python > User Input > Exploring the input() Function"}]},{"@type":"WebSite","@id":"https:\/\/dashingknights.com\/news\/#website","url":"https:\/\/dashingknights.com\/news\/","name":"News Beat","description":"Stay Ahead: Get the News Before Everyone Else","publisher":{"@id":"https:\/\/dashingknights.com\/news\/#organization"},"alternateName":"dashing knights news","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dashingknights.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dashingknights.com\/news\/#organization","name":"dashing knights - NewsBeat","alternateName":"NewsBeat - dashing knights","url":"https:\/\/dashingknights.com\/news\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dashingknights.com\/news\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/01\/cropped-dashingknights.com_.jpg?fit=564%2C565&ssl=1","contentUrl":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/01\/cropped-dashingknights.com_.jpg?fit=564%2C565&ssl=1","width":564,"height":565,"caption":"dashing knights - NewsBeat"},"image":{"@id":"https:\/\/dashingknights.com\/news\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/groups\/609976580889610","https:\/\/x.com\/DashingKnights","https:\/\/www.instagram.com\/_dashing_knights_\/","https:\/\/www.instagram.com\/depak002021\/"]},{"@type":"Person","@id":"https:\/\/dashingknights.com\/news\/#\/schema\/person\/1b1fb25832e42bc14f058e78c40fc91f","name":"Depak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3408507aebbe08301de82a7aeba3beb366149b3e45491c934a6043faa39413d8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3408507aebbe08301de82a7aeba3beb366149b3e45491c934a6043faa39413d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3408507aebbe08301de82a7aeba3beb366149b3e45491c934a6043faa39413d8?s=96&d=mm&r=g","caption":"Depak"},"sameAs":["https:\/\/dashingknights.com\/","https:\/\/www.facebook.com\/groups\/609976580889610","https:\/\/www.instagram.com\/_dashing_knights_\/","https:\/\/www.linkedin.com\/in\/depak-kumarasan-999542227\/"],"url":"https:\/\/dashingknights.com\/news\/author\/dk-101002098\/"}]}},"jetpack-related-posts":[{"id":590,"url":"https:\/\/dashingknights.com\/news\/javascript-variable-hoisting-function-scope-output-analysis\/","url_meta":{"origin":586,"position":0},"title":"Understanding JavaScript Variable Hoisting and Function Scope","author":"Depak","date":"July 1, 2023","format":false,"excerpt":"Analyzing the Output of a Code Snippet What will be the output of the following code snippet? function test() { console.log(a); console.log(foo()); var a = 1; function foo() { return 2; } } test();JavaScript Options: A. undefined, undefined B. ReferenceError C. 1, 2 D. 2, undefined Correct Answer: A. undefined,\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":577,"url":"https:\/\/dashingknights.com\/news\/sorting-arrays-javascript-snippet-functionality-explanation\/","url_meta":{"origin":586,"position":1},"title":"Sorting Arrays in JavaScript","author":"Depak","date":"June 30, 2023","format":false,"excerpt":"Exploring the commonly used code snippet and its functionality In JavaScript, sorting arrays is a common operation when it comes to manipulating and organizing data. Sorting allows us to arrange the elements of an array in a specific order, making it easier to search, compare, or present the data in\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"sorting-arrays-in-javascript","src":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/sorting-arrays-in-javascript.webp?fit=1024%2C1024&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/sorting-arrays-in-javascript.webp?fit=1024%2C1024&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/sorting-arrays-in-javascript.webp?fit=1024%2C1024&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/dashingknights.com\/news\/wp-content\/uploads\/2023\/06\/sorting-arrays-in-javascript.webp?fit=1024%2C1024&ssl=1&resize=700%2C400 2x"},"classes":[]}],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/Peyf42-9s","_links":{"self":[{"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/pages\/586","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/comments?post=586"}],"version-history":[{"count":2,"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/pages\/586\/revisions"}],"predecessor-version":[{"id":589,"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/pages\/586\/revisions\/589"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/media\/587"}],"wp:attachment":[{"href":"https:\/\/dashingknights.com\/news\/wp-json\/wp\/v2\/media?parent=586"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}