{"id":517,"date":"2012-05-01T13:55:52","date_gmt":"2012-05-01T13:55:52","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=517"},"modified":"2013-01-27T19:37:19","modified_gmt":"2013-01-27T10:37:19","slug":"%ed%8c%8c%ec%9d%b4%ec%8d%acpython-%ec%8a%a4%ed%84%b0%eb%94%94-string","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=517","title":{"rendered":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 &#8211; String"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><a href=\"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png\" alt=\"google-python\" width=\"650\" height=\"325\" class=\"alignnone size-full wp-image-841\" srcset=\"https:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png 650w, https:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python-300x150.png 300w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/a><\/p>\n<p>Programming Languages \uc5d0\uc11c Google&#8217;s Python Class \uc758 String \uc744 \uc2a4\ud130\ub514..<\/p>\n<p><a href=\"http:\/\/code.google.com\/intl\/ko-KR\/edu\/languages\/google-python-class\/strings.html\" target=\"_blank\">http:\/\/code.google.com\/intl\/ko-KR\/edu\/languages\/google-python-class\/strings.html<\/a><\/p>\n<p>\ub300\ucda9 \uc77d\uace0 \ub098\ub2c8 \uc5f0\uc2b5\ubb38\uc81c\uac00!<\/p>\n<p>\uc9c0\ub09c\ubc88\uc5d0 \ubc1b\uc740 google-python-exercises \uc5d0\uc11c basic\/string1.py \uc744 \ud480\uc5b4\ubcf4\uc558\ub2e4.<\/p>\n<pre class=\"lang:python decode:true \" ># A. donuts\r\n# Given an int count of a number of donuts, return a string\r\n# of the form 'Number of donuts: &lt;count&gt;', where &lt;count&gt; is the number\r\n# passed in. However, if the count is 10 or more, then use the word 'many'\r\n# instead of the actual count.\r\n# So donuts(5) returns 'Number of donuts: 5'\r\n# and donuts(23) returns 'Number of donuts: many'\r\ndef donuts(count):\r\n    result = 'Number of donuts: ';\r\n    if count &gt;= 10: result = result + 'many'\r\n    else: result = result + str(count)\r\n    return result\r\n\r\n# B. both_ends\r\n# Given a string s, return a string made of the first 2\r\n# and the last 2 chars of the original string,\r\n# so 'spring' yields 'spng'. However, if the string length\r\n# is less than 2, return instead the empty string.\r\ndef both_ends(s):\r\n    if len(s) &gt; 2: result = s[0:2] + s[-2:]\r\n    else: result = ''\r\n    return result\r\n\r\n# C. fix_start\r\n# Given a string s, return a string\r\n# where all occurences of its first char have\r\n# been changed to '*', except do not change\r\n# the first char itself.\r\n# e.g. 'babble' yields 'ba**le'\r\n# Assume that the string is length 1 or more.\r\n# Hint: s.replace(stra, strb) returns a version of string s\r\n# where all instances of stra have been replaced by strb.\r\ndef fix_start(s):\r\n    result = s.replace(s[0], '*')\r\n    return s[0] + result[1:]\r\n\r\n# D. MixUp\r\n# Given strings a and b, return a single string with a and b separated\r\n# by a space '&lt;a&gt; &lt;b&gt;', except swap the first 2 chars of each string.\r\n# e.g.\r\n# \u00a0 'mix', pod' -&gt; 'pox mid'\r\n# \u00a0 'dog', 'dinner' -&gt; 'dig donner'\r\n# Assume a and b are length 2 or more.\r\ndef mix_up(a, b):\r\n    left = b[0:2] + a[2:]\r\n    right = a[0:2] + b[2:]\r\n    return left + \" \" + right\r\n<\/pre>\n<p>\uacb0\uacfc :<\/p>\n<pre class=\"lang:default decode:true \" >basic apollo89$ python string1.py\r\ndonuts\r\nOK \u00a0got: 'Number of donuts: 4' expected: 'Number of donuts: 4'\r\nOK \u00a0got: 'Number of donuts: 9' expected: 'Number of donuts: 9'\r\nOK \u00a0got: 'Number of donuts: many' expected: 'Number of donuts: many'\r\nOK \u00a0got: 'Number of donuts: many' expected: 'Number of donuts: many'\r\n\r\nboth_ends\r\nOK \u00a0got: 'spng' expected: 'spng'\r\nOK \u00a0got: 'Helo' expected: 'Helo'\r\nOK \u00a0got: '' expected: ''\r\nOK \u00a0got: 'xyyz' expected: 'xyyz'\r\n\r\nfix_start\r\nOK \u00a0got: 'ba**le' expected: 'ba**le'\r\nOK \u00a0got: 'a*rdv*rk' expected: 'a*rdv*rk'\r\nOK \u00a0got: 'goo*le' expected: 'goo*le'\r\nOK \u00a0got: 'donut' expected: 'donut'\r\n\r\nmix_up\r\nOK \u00a0got: 'pox mid' expected: 'pox mid'\r\nOK \u00a0got: 'dig donner' expected: 'dig donner'\r\nOK \u00a0got: 'spash gnort' expected: 'spash gnort'\r\nOK \u00a0got: 'fizzy perm' expected: 'fizzy perm'\r\nbasic apollo89$\r\n<\/pre>\n<p>\ub0b4\uce5c\uae40\uc5d0 basic\/string2.py \uae4c\uc9c0 \uace0\uace0~<\/p>\n<pre class=\"lang:python decode:true \" ># D. verbing\r\n# Given a string, if its length is at least 3,\r\n# add 'ing' to its end.\r\n# Unless it already ends in 'ing', in which case\r\n# add 'ly' instead.\r\n# If the string length is less than 3, leave it unchanged.\r\n# Return the resulting string.\r\ndef verbing(s):\r\n    if len(s) &lt; 3: result = s\r\n    else :\r\n        if s[-3:] == 'ing': result = s + 'ly'\r\n        if s[-3:] != 'ing': result = s + 'ing'\r\n    return result\r\n\r\n# E. not_bad\r\n# Given a string, find the first appearance of the\r\n# substring 'not' and 'bad'. If the 'bad' follows\r\n# the 'not', replace the whole 'not'...'bad' substring\r\n# with 'good'.\r\n# Return the resulting string.\r\n# So 'This dinner is not that bad!' yields:\r\n# This dinner is good!\r\ndef not_bad(s):\r\n    findNot = s.find('not')\r\n    findBad = s.find('bad')\r\n    if findBad &gt; findNot: result = s[:findNot] + 'good' + s[findBad+3:]\r\n    else: result = s\r\n    return result\r\n\r\n# F. front_back\r\n# Consider dividing a string into two halves.\r\n# If the length is even, the front and back halves are the same length.\r\n# If the length is odd, we'll say that the extra char goes in the front half.\r\n# e.g. 'abcde', the front half is 'abc', the back half 'de'.\r\n# Given 2 strings, a and b, return a string of the form\r\n# \u00a0a-front + b-front + a-back + b-back\r\ndef front_back(a, b):\r\n    if len(a)%2 == 1:\r\n        aFront = a[0:(len(a)\/2)+1]\r\n        aBack = a[(len(a)\/2)+1:]\r\n    else:\r\n        aFront = a[0:(len(a)\/2)]\r\n        aBack = a[(len(a)\/2):]\r\n\r\n    if len(b)%2 == 1:\r\n        bFront = b[0:(len(b)\/2)+1]\r\n        bBack = b[(len(b)\/2)+1:]\r\n    else:\r\n        bFront = b[0:(len(b)\/2)]\r\n        bBack = b[(len(b)\/2):]\r\n    return aFront + bFront + aBack + bBack\r\n<\/pre>\n<p>\uacb0\uacfc :<\/p>\n<pre class=\"lang:default decode:true \" >basic apollo89$ python string2.py\r\nverbing\r\nOK \u00a0got: 'hailing' expected: 'hailing'\r\nOK \u00a0got: 'swimingly' expected: 'swimingly'\r\nOK \u00a0got: 'do' expected: 'do'\r\n\r\nnot_bad\r\nOK \u00a0got: 'This movie is good' expected: 'This movie is good'\r\nOK \u00a0got: 'This dinner is good!' expected: 'This dinner is good!'\r\nOK \u00a0got: 'This tea is not hot' expected: 'This tea is not hot'\r\nOK \u00a0got: \"It's bad yet not\" expected: \"It's bad yet not\"\r\n\r\nfront_back\r\nOK \u00a0got: 'abxcdy' expected: 'abxcdy'\r\nOK \u00a0got: 'abcxydez' expected: 'abcxydez'\r\nOK \u00a0got: 'KitDontenut' expected: 'KitDontenut'\r\nbasic apollo89$\r\n<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Programming Languages \uc5d0\uc11c Google&#8217;s Python Class \uc758 String \uc744 \uc2a4\ud130\ub514.. http:\/\/code.google.com\/intl\/ko-KR\/edu\/languages\/google-python-class\/strings.html \ub300\ucda9 \uc77d\uace0 \ub098\ub2c8 \uc5f0\uc2b5\ubb38\uc81c\uac00! \uc9c0\ub09c\ubc88\uc5d0 \ubc1b\uc740 google-python-exercises \uc5d0\uc11c basic\/string1.py \uc744 \ud480\uc5b4\ubcf4\uc558\ub2e4. # A. donuts # Given an int count of a number of donuts, return a string # &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=517\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[663],"tags":[604,605,607,140],"class_list":["post-517","post","type-post","status-publish","format-standard","hentry","category-python-","tag-google-code","tag-google-python-exercises","tag-string","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/apollo89.com\/wordpress\/?p=517\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&nbsp; Programming Languages \uc5d0\uc11c Google&#8217;s Python Class \uc758 String \uc744 \uc2a4\ud130\ub514.. http:\/\/code.google.com\/intl\/ko-KR\/edu\/languages\/google-python-class\/strings.html \ub300\ucda9 \uc77d\uace0 \ub098\ub2c8 \uc5f0\uc2b5\ubb38\uc81c\uac00! \uc9c0\ub09c\ubc88\uc5d0 \ubc1b\uc740 google-python-exercises \uc5d0\uc11c basic\/string1.py \uc744 \ud480\uc5b4\ubcf4\uc558\ub2e4. # A. donuts # Given an int count of a number of donuts, return a string # &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=517\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2012-05-01T13:55:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-01-27T10:37:19+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"apollo89\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 &#8211; String\",\"datePublished\":\"2012-05-01T13:55:52+00:00\",\"dateModified\":\"2013-01-27T10:37:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517\"},\"wordCount\":30,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/apollo89.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2012\\\/05\\\/google-python.png\",\"keywords\":[\"google Code\",\"google-python-exercises\",\"string\",\"\ud30c\uc774\uc36c\"],\"articleSection\":[\"Python\\\/Ruby\\\/Perl\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517\",\"name\":\"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/apollo89.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2012\\\/05\\\/google-python.png\",\"datePublished\":\"2012-05-01T13:55:52+00:00\",\"dateModified\":\"2013-01-27T10:37:19+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#primaryimage\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2012\\\/05\\\/google-python.png\",\"contentUrl\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2012\\\/05\\\/google-python.png\",\"width\":650,\"height\":325},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=517#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 &#8211; String\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=517","og_locale":"ko_KR","og_type":"article","og_title":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com","og_description":"&nbsp; Programming Languages \uc5d0\uc11c Google&#8217;s Python Class \uc758 String \uc744 \uc2a4\ud130\ub514.. http:\/\/code.google.com\/intl\/ko-KR\/edu\/languages\/google-python-class\/strings.html \ub300\ucda9 \uc77d\uace0 \ub098\ub2c8 \uc5f0\uc2b5\ubb38\uc81c\uac00! \uc9c0\ub09c\ubc88\uc5d0 \ubc1b\uc740 google-python-exercises \uc5d0\uc11c basic\/string1.py \uc744 \ud480\uc5b4\ubcf4\uc558\ub2e4. # A. donuts # Given an int count of a number of donuts, return a string # &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=517","og_site_name":"Apollo89.com","article_published_time":"2012-05-01T13:55:52+00:00","article_modified_time":"2013-01-27T10:37:19+00:00","og_image":[{"url":"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png","type":"","width":"","height":""}],"author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=517#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 &#8211; String","datePublished":"2012-05-01T13:55:52+00:00","dateModified":"2013-01-27T10:37:19+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517"},"wordCount":30,"commentCount":0,"image":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517#primaryimage"},"thumbnailUrl":"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png","keywords":["google Code","google-python-exercises","string","\ud30c\uc774\uc36c"],"articleSection":["Python\/Ruby\/Perl"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=517#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=517","url":"https:\/\/apollo89.com\/wordpress\/?p=517","name":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 - String - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517#primaryimage"},"image":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517#primaryimage"},"thumbnailUrl":"http:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png","datePublished":"2012-05-01T13:55:52+00:00","dateModified":"2013-01-27T10:37:19+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=517#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=517"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/apollo89.com\/wordpress\/?p=517#primaryimage","url":"https:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png","contentUrl":"https:\/\/apollo89.com\/wordpress\/wp-content\/uploads\/2012\/05\/google-python.png","width":650,"height":325},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=517#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"\ud30c\uc774\uc36c(python) \uc2a4\ud130\ub514 &#8211; String"}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/517","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=517"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/517\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}