{"id":24020,"date":"2024-10-22T03:26:53","date_gmt":"2024-10-22T03:26:53","guid":{"rendered":"http:\/\/thelivesmart.com\/w\/?p=24020"},"modified":"2024-11-26T08:04:18","modified_gmt":"2024-11-26T08:04:18","slug":"%ed%8c%8c%ec%9d%b4%ec%8d%ac-%ec%9e%90%eb%a3%8c%ed%98%95-%eb%94%95%ec%85%94%eb%84%88%eb%a6%ac","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/24020\/","title":{"rendered":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac"},"content":{"rendered":"\n<div id=\"wrap\" class=\"wrap-right\">\n    <div id=\"container\">\n        <main class=\"main \">\n            <div class=\"area-main\">\n                <div class=\"area-view\">\n                    <div class=\"article-header\">\n                        <div class=\"inner-article-header\">\n                            <div class=\"box-meta\">\n                                <h2 class=\"title-article\">\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac<\/h2>\n                                <div class=\"box-info\">\n                                    <p class=\"category\">\ud30c\uc774\uc36c \uacf5\ubd80<\/p>\n                                    <p class=\"date\">2024-10-16 01:44:25<\/p>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <hr>\n                    <div class=\"article-view\">\n                        <div class=\"contents_style\">\n                            <!DOCTYPE html>\n<html lang=\"ko\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615<\/title>\n<\/head>\n<body>\n    <h1>\ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615<\/h1>\n    <p>\ud30c\uc774\uc36c\uc5d0\uc11c <strong>\ub515\uc154\ub108\ub9ac(Dictionary)<\/strong>\ub294 \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 <strong>\ub9e4\ud551 \uc790\ub8cc\ud615<\/strong>\uc785\ub2c8\ub2e4. \ub515\uc154\ub108\ub9ac\ub294 \uc911\uad04\ud638 <code>{}<\/code>\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ud558\uba70, \uac01 \uc694\uc18c\ub294 \ud0a4(key)\uc640 \uac12(value)\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74:<\/p>\n    <pre><code>my_dict = {\"name\": \"Alice\", \"age\": 25, \"city\": \"New York\"}<\/code><\/pre>\n\n    <h2>\ub515\uc154\ub108\ub9ac\uc758 \ud2b9\uc9d5<\/h2>\n    <h3>1. \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \uc800\uc7a5<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 \uac01 \uc694\uc18c\uac00 <strong>\ud0a4\uc640 \uac12\uc758 \uc30d<\/strong>\uc73c\ub85c \uc800\uc7a5\ub418\uba70, \ud0a4\ub294 \uace0\uc720\ud574\uc57c \ud569\ub2c8\ub2e4. \ud0a4\ub294 \ubcc0\uacbd\ud560 \uc218 \uc5c6\ub294 \uc790\ub8cc\ud615(\uc608: \ubb38\uc790\uc5f4, \uc22b\uc790, \ud29c\ud50c \ub4f1)\uc774\uc5b4\uc57c \ud558\uba70, \uac12\uc740 \uc5b4\ub5a4 \uc790\ub8cc\ud615\uc774\ub4e0 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/p>\n    <pre><code>person = {\"name\": \"Bob\", \"age\": 30, \"job\": \"Developer\"}\nprint(person[\"name\"])  # 'Bob'\nprint(person[\"age\"])   # 30<\/code><\/pre>\n\n    <h3>2. \ub515\uc154\ub108\ub9ac \uc218\uc815<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 <strong>\uac00\ubcc0\uc801<\/strong>\uc774\ubbc0\ub85c, \uc694\uc18c\ub97c \ucd94\uac00, \uc218\uc815, \uc0ad\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc0c8\ub85c\uc6b4 \ud0a4-\uac12 \uc30d\uc744 \ucd94\uac00\ud558\uac70\ub098 \uae30\uc874 \uac12\uc744 \uc218\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n    <pre><code>my_dict = {\"name\": \"Alice\", \"age\": 25}\nmy_dict[\"city\"] = \"New York\"  # \uc0c8\ub85c\uc6b4 \ud0a4-\uac12 \uc30d \ucd94\uac00\nmy_dict[\"age\"] = 26            # \uae30\uc874 \uac12 \uc218\uc815\nprint(my_dict)  # {'name': 'Alice', 'age': 26, 'city': 'New York'}<\/code><\/pre>\n\n    <h3>3. \ub515\uc154\ub108\ub9ac \uc694\uc18c \uc0ad\uc81c<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\uc5d0\uc11c \ud2b9\uc815 \uc694\uc18c\ub97c \uc0ad\uc81c\ud558\ub824\uba74 <code>del<\/code> \ud0a4\uc6cc\ub4dc\ub97c \uc0ac\uc6a9\ud558\uac70\ub098 <code>pop()<\/code> \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n    <pre><code>my_dict = {\"name\": \"Alice\", \"age\": 25, \"city\": \"New York\"}\ndel my_dict[\"age\"]           # 'age' \ud0a4 \uc0ad\uc81c\nprint(my_dict)  # {'name': 'Alice', 'city': 'New York'}\n\ncity = my_dict.pop(\"city\")   # 'city' \ud0a4 \uc0ad\uc81c\ud558\uace0 \uac12 \ubc18\ud658\nprint(city)      # 'New York'\nprint(my_dict)   # {'name': 'Alice'}<\/code><\/pre>\n\n    <h3>4. \ub515\uc154\ub108\ub9ac \uba54\uc11c\ub4dc<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 \ub2e4\uc591\ud55c \uba54\uc11c\ub4dc\ub97c \uc81c\uacf5\ud558\uc5ec \uc694\uc18c\ub97c \uc27d\uac8c \uc870\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n    <ul>\n        <li><code>dict.keys()<\/code>: \ub515\uc154\ub108\ub9ac\uc758 \ubaa8\ub4e0 \ud0a4\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/li>\n        <li><code>dict.values()<\/code>: \ub515\uc154\ub108\ub9ac\uc758 \ubaa8\ub4e0 \uac12\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<\/li>\n        <li><code>dict.items()<\/code>: \ub515\uc154\ub108\ub9ac\uc758 \ubaa8\ub4e0 \ud0a4-\uac12 \uc30d\uc744 \ud29c\ud50c \ud615\ud0dc\ub85c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/li>\n        <li><code>dict.get(key)<\/code>: \ud0a4\uc5d0 \ub300\uc751\ud558\ub294 \uac12\uc744 \ubc18\ud658\ud558\uba70, \ud0a4\uac00 \uc5c6\uc73c\uba74 <code>None<\/code>\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<\/li>\n        <li><code>dict.update(other_dict)<\/code>: \ub2e4\ub978 \ub515\uc154\ub108\ub9ac\uc758 \uc694\uc18c\ub97c \ucd94\uac00\ud558\uac70\ub098 \uc5c5\ub370\uc774\ud2b8\ud569\ub2c8\ub2e4.<\/li>\n    <\/ul>\n    <pre><code>my_dict = {\"name\": \"Alice\", \"age\": 25}\nprint(my_dict.keys())    # dict_keys(['name', 'age'])\nprint(my_dict.values())  # dict_values(['Alice', 25])\nprint(my_dict.items())   # dict_items([('name', 'Alice'), ('age', 25)])\n\nprint(my_dict.get(\"city\"))  # None\nmy_dict.update({\"city\": \"New York\", \"age\": 26})\nprint(my_dict)  # {'name': 'Alice', 'age': 26, 'city': 'New York'}<\/code><\/pre>\n\n    <h3>5. \ub515\uc154\ub108\ub9ac \ubc18\ubcf5<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 \ubc18\ubcf5\ubb38\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud0a4, \uac12, \ub610\ub294 \ud0a4-\uac12 \uc30d\uc744 \uc21c\ud68c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n    <pre><code>my_dict = {\"name\": \"Alice\", \"age\": 25, \"city\": \"New York\"}\n\n# \ud0a4 \ubc18\ubcf5\nfor key in my_dict:\n    print(key)\n\n# \uac12 \ubc18\ubcf5\nfor value in my_dict.values():\n    print(value)\n\n# \ud0a4-\uac12 \uc30d \ubc18\ubcf5\nfor key, value in my_dict.items():\n    print(f\"{key}: {value}\")<\/code><\/pre>\n\n    <h3>6. \uc911\ucca9\ub41c \ub515\uc154\ub108\ub9ac<\/h3>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 \ub2e4\ub978 \ub515\uc154\ub108\ub9ac\ub97c \uac12\uc73c\ub85c \uac00\uc9c8 \uc218 \uc788\uc73c\uba70, \uc774\ub97c <strong>\uc911\ucca9\ub41c \ub515\uc154\ub108\ub9ac<\/strong>\ub77c\uace0 \ud569\ub2c8\ub2e4. \uc911\ucca9\ub41c \ub515\uc154\ub108\ub9ac\ub294 \ubcf5\uc7a1\ud55c \ub370\uc774\ud130\ub97c \uad6c\uc870\ud654\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n    <pre><code>nested_dict = {\n    \"person1\": {\"name\": \"Alice\", \"age\": 25},\n    \"person2\": {\"name\": \"Bob\", \"age\": 30}\n}\nprint(nested_dict[\"person1\"][\"name\"])  # 'Alice'\nprint(nested_dict[\"person2\"][\"age\"])   # 30<\/code><\/pre>\n\n    <h2>\uc694\uc57d<\/h2>\n    <ul>\n        <li>\ub515\uc154\ub108\ub9ac\ub294 \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \ub9e4\ud551 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4.<\/li>\n        <li>\ub515\uc154\ub108\ub9ac\ub294 \uac00\ubcc0\uc801\uc774\uba70, \uc694\uc18c\ub97c \ucd94\uac00, \uc218\uc815, \uc0ad\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n        <li><code>keys()<\/code>, <code>values()<\/code>, <code>items()<\/code>\uc640 \uac19\uc740 \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub515\uc154\ub108\ub9ac\uc758 \uc694\uc18c\uc5d0 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n        <li>\ub515\uc154\ub108\ub9ac\ub294 \ubc18\ubcf5\ubb38\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud0a4, \uac12, \ub610\ub294 \ud0a4-\uac12 \uc30d\uc744 \uc21c\ud68c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n        <li>\uc911\ucca9\ub41c \ub515\uc154\ub108\ub9ac\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubcf5\uc7a1\ud55c \ub370\uc774\ud130\ub97c \uad6c\uc870\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n    <\/ul>\n    <p>\ub515\uc154\ub108\ub9ac\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c \ub9e4\uc6b0 \uc911\uc694\ud55c \uc790\ub8cc\ud615 \uc911 \ud558\ub098\ub85c, \ub370\uc774\ud130\ub97c \ud6a8\uc728\uc801\uc73c\ub85c \uc800\uc7a5\ud558\uace0 \uc870\uc791\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub515\uc154\ub108\ub9ac\uc758 \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \ud65c\uc6a9\ud558\uc5ec \ubcf5\uc7a1\ud55c \ub370\uc774\ud130\ub97c \ub2e4\ub904 \ubcf4\uc138\uc694!<\/p>\n<\/body>\n<\/html>\n                        <\/div>\n                        <br\/>\n                        <div class=\"tags\">\n                            \n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/main>\n    <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac \ud30c\uc774\uc36c \uacf5\ubd80 2024-10-16 01:44:25 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c \ub515\uc154\ub108\ub9ac(Dictionary)\ub294 \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \ub9e4\ud551 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub515\uc154\ub108\ub9ac\ub294 \uc911\uad04\ud638 {}\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ud558\uba70, \uac01 \uc694\uc18c\ub294 \ud0a4(key)\uc640 \uac12(value)\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: my_dict = {&#8220;name&#8221;: &#8220;Alice&#8221;, &#8220;age&#8221;: 25, &#8220;city&#8221;: &#8220;New York&#8221;} \ub515\uc154\ub108\ub9ac\uc758 \ud2b9\uc9d5 1. \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \uc800\uc7a5 \ub515\uc154\ub108\ub9ac\ub294 \uac01 \uc694\uc18c\uac00 \ud0a4\uc640 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/24020\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[11],"tags":[14,15],"class_list":["post-24020","post","type-post","status-publish","format-standard","hentry","category-11","tag-14","tag-15"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/24020\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac \ud30c\uc774\uc36c \uacf5\ubd80 2024-10-16 01:44:25 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c \ub515\uc154\ub108\ub9ac(Dictionary)\ub294 \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \ub9e4\ud551 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub515\uc154\ub108\ub9ac\ub294 \uc911\uad04\ud638 {}\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ud558\uba70, \uac01 \uc694\uc18c\ub294 \ud0a4(key)\uc640 \uac12(value)\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: my_dict = {&quot;name&quot;: &quot;Alice&quot;, &quot;age&quot;: 25, &quot;city&quot;: &quot;New York&quot;} \ub515\uc154\ub108\ub9ac\uc758 \ud2b9\uc9d5 1. \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \uc800\uc7a5 \ub515\uc154\ub108\ub9ac\ub294 \uac01 \uc694\uc18c\uac00 \ud0a4\uc640 &hellip; \ub354 \ubcf4\uae30 &quot;\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/24020\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-22T03:26:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:04:18+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac\",\"datePublished\":\"2024-10-22T03:26:53+00:00\",\"dateModified\":\"2024-11-26T08:04:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/\"},\"wordCount\":9,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"keywords\":[\"\ud30c\uc774\uc36c\",\"\ud30c\uc774\uc36c\uac15\uc88c\"],\"articleSection\":[\"\ud30c\uc774\uc36c\uacf5\ubd80\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/atmokpo.com\/w\/24020\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/\",\"url\":\"https:\/\/atmokpo.com\/w\/24020\/\",\"name\":\"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-22T03:26:53+00:00\",\"dateModified\":\"2024-11-26T08:04:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/24020\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/24020\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/24020\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac \ud30c\uc774\uc36c \uacf5\ubd80 2024-10-16 01:44:25 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c \ub515\uc154\ub108\ub9ac \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c \ub515\uc154\ub108\ub9ac(Dictionary)\ub294 \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \ub9e4\ud551 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub515\uc154\ub108\ub9ac\ub294 \uc911\uad04\ud638 {}\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ud558\uba70, \uac01 \uc694\uc18c\ub294 \ud0a4(key)\uc640 \uac12(value)\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: my_dict = {\"name\": \"Alice\", \"age\": 25, \"city\": \"New York\"} \ub515\uc154\ub108\ub9ac\uc758 \ud2b9\uc9d5 1. \ud0a4\uc640 \uac12\uc758 \uc30d\uc73c\ub85c \uc800\uc7a5 \ub515\uc154\ub108\ub9ac\ub294 \uac01 \uc694\uc18c\uac00 \ud0a4\uc640 &hellip; \ub354 \ubcf4\uae30 \"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac\"","og_url":"https:\/\/atmokpo.com\/w\/24020\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-22T03:26:53+00:00","article_modified_time":"2024-11-26T08:04:18+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/24020\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/24020\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac","datePublished":"2024-10-22T03:26:53+00:00","dateModified":"2024-11-26T08:04:18+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/24020\/"},"wordCount":9,"commentCount":0,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"keywords":["\ud30c\uc774\uc36c","\ud30c\uc774\uc36c\uac15\uc88c"],"articleSection":["\ud30c\uc774\uc36c\uacf5\ubd80"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/atmokpo.com\/w\/24020\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/24020\/","url":"https:\/\/atmokpo.com\/w\/24020\/","name":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-22T03:26:53+00:00","dateModified":"2024-11-26T08:04:18+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/24020\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/24020\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/24020\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615 : \ub515\uc154\ub108\ub9ac"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":24125,"url":"https:\/\/atmokpo.com\/w\/24125\/","url_meta":{"origin":24020,"position":0},"title":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615\uacfc \ub118\ud30c\uc774 \ubc30\uc5f4: \uae30\ucd08\ubd80\ud130 \uc774\ud574\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 22\uc77c","format":false,"excerpt":"\ud30c\uc774\uc36c \uc790\ub8cc\ud615\uacfc \ub118\ud30c\uc774 \ubc30\uc5f4: \uae30\ucd08\ubd80\ud130 \uc774\ud574\ud558\uae30 \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \uc790\ub8cc\ud615(data types)\uc744 \uc81c\uacf5\ud558\uc5ec \ub370\uc774\ud130\ub97c \ud6a8\uacfc\uc801\uc73c\ub85c \uad00\ub9ac\ud558\uace0 \uc870\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub610\ud55c, \uc218\uce58 \ub370\uc774\ud130\uc758 \ud6a8\uc728\uc801\uc778 \ucc98\ub9ac\ub97c \uc704\ud574 \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc778 NumPy\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc790\ub8cc\ud615\uacfc \ud568\uaed8 NumPy \ubc30\uc5f4\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc744 \uc81c\uacf5\ud558\uc5ec, \uac1c\ubc1c\uc790\uac00 \ub370\uc774\ud130\ub97c \ub2e4\uc591\ud55c \ubc29\uc2dd\uc73c\ub85c \uc870\uc791\ud560\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c\uacf5\ubd80&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c\uacf5\ubd80","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac%ea%b3%b5%eb%b6%80\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24147,"url":"https:\/\/atmokpo.com\/w\/24147\/","url_meta":{"origin":24020,"position":1},"title":"\ud30c\uc774\uc36c \ub458\ub7ec\ubcf4\uae30","author":"root","date":"2024\ub144 10\uc6d4 25\uc77c","format":false,"excerpt":"\ud30c\uc774\uc36c \ub458\ub7ec\ubcf4\uae30 \ud30c\uc774\uc36c\uc740 \ub192\uc740 \uc218\uc900\uc758 \ub2e4\ubaa9\uc801 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc77d\uae30 \uc27d\uace0 \uac04\uacb0\ud55c \ubb38\ubc95\uc744 \uac00\uc9c4 \uac83\uc774 \ud2b9\uc9d5\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc744 \ucc98\uc74c \uc811\ud558\ub294 \ubd84\ub4e4\uc744 \uc704\ud574 \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc694\uc18c\uc640 \uae30\ub2a5\uc744 \ub458\ub7ec\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uc5ec\ub7ec\ubd84\uc774 \ud30c\uc774\uc36c\uc744 \ud6a8\uacfc\uc801\uc73c\ub85c \ud65c\uc6a9\ud558\ub3c4\ub85d \ub3d5\uace0, \ub354 \uae4a\uc774 \uc788\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \uac1c\ub150\uc73c\ub85c \ub098\uc544\uac00\ub294 \ubc11\uac70\ub984\uc774 \ub418\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4. 1. \ud30c\uc774\uc36c \uc124\uce58\uc640 \uc124\uc815 \ud30c\uc774\uc36c\uc744 \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c\uacf5\ubd80&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c\uacf5\ubd80","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac%ea%b3%b5%eb%b6%80\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24143,"url":"https:\/\/atmokpo.com\/w\/24143\/","url_meta":{"origin":24020,"position":2},"title":"01-4 \ud30c\uc774\uc36c \uc124\uce58\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 25\uc77c","format":false,"excerpt":"01-4 \ud30c\uc774\uc36c \uc124\uce58\ud558\uae30 \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Windows, macOS, \uadf8\ub9ac\uace0 Linux \uc6b4\uc601 \uccb4\uc81c\uc5d0 \ud30c\uc774\uc36c\uc744 \uc124\uce58\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc774\ub780? \ud30c\uc774\uc36c\uc740 Guido van Rossum\uc5d0 \uc758\ud574 \ub9cc\ub4e4\uc5b4\uc9c4 \uace0\uae09 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \ub2e4\uc591\ud55c \ud504\ub85c\uadf8\ub798\ubc0d \uc2a4\ud0c0\uc77c\uacfc \ucca0\ud559\uc744 \uc9c0\uc6d0\ud558\uba70, \uba85\ud655\ud558\uace0 \uac04\uacb0\ud55c \ubb38\ubc95\uc744 \uac00\uc9c0\uace0 \uc788\uc5b4 \ucd08\ubcf4\uc790\ub4e4\uc5d0\uac8c\ub3c4 \uc801\ud569\ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c \uc124\uce58 \uc900\ube44 \ud30c\uc774\uc36c\uc744 \uc124\uce58\ud558\uae30 \uc804\uc5d0 Python \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc758 \ucd5c\uc2e0 \ubc84\uc804\uc744 \ub2e4\uc6b4\ub85c\ub4dc\ud560\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c\uacf5\ubd80&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c\uacf5\ubd80","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac%ea%b3%b5%eb%b6%80\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":27232,"url":"https:\/\/atmokpo.com\/w\/27232\/","url_meta":{"origin":24020,"position":3},"title":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud2b9\uc815 \uac70\ub9ac\uc758 \ub3c4\uc2dc \ucc3e\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \ubb38\uc81c \uc815\uc758 \uc8fc\uc5b4\uc9c4 \ub3c4\uc2dc\uc640 \uac70\ub9ac \uc815\ubcf4\ub97c \ubc14\ud0d5\uc73c\ub85c, \ud2b9\uc815 \uac70\ub9ac K\uc5d0 \uc815\ud655\ud788 \ub3c4\ub2ec\ud560 \uc218 \uc788\ub294 \ub3c4\uc2dc \ubaa9\ub85d\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uac01 \ub3c4\uc2dc\ub294 \ubc88\ud638\ub85c \ud45c\ud604\ub418\uba70, \ub450 \ub3c4\uc2dc \uac04\uc758 \uac70\ub9ac \uc815\ubcf4\ub294 \uc591\ubc29\ud5a5 \ub3c4\ub85c\ub85c \uc5f0\uacb0\ub41c \ud615\ud0dc\ub85c \uc8fc\uc5b4\uc9d1\ub2c8\ub2e4. \ubaa9\ud45c\ub294 K\ub9cc\ud07c \ub5a8\uc5b4\uc9c4 \ub3c4\uc2dc\ub97c \ucc3e\ub294 \uac83\uc785\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, N\uac1c\uc758 \ub3c4\uc2dc\uac00 \uc788\uace0, M\uac1c\uc758\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30803,"url":"https:\/\/atmokpo.com\/w\/30803\/","url_meta":{"origin":24020,"position":4},"title":"\ud30c\uc774\uc36c \uc790\ub3d9\ub9e4\ub9e4 \uac1c\ubc1c, pandas DataFrame","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\ucd5c\uadfc \ub4e4\uc5b4 \ud30c\uc774\uc36c\uc744 \ud65c\uc6a9\ud55c \uc790\ub3d9\ub9e4\ub9e4 \uc2dc\uc2a4\ud15c \uac1c\ubc1c\uc774 \ud65c\ubc1c\ud788 \uc774\ub8e8\uc5b4\uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 \ub370\uc774\ud130 \ubd84\uc11d \ubc0f \ucc98\ub9ac\ub97c \uc704\ud55c pandas \ub77c\uc774\ube0c\ub7ec\ub9ac\ub294 \ub9ce\uc740 \ud2b8\ub808\uc774\ub354\uc640 \uac1c\ubc1c\uc790\ub4e4 \uc0ac\uc774\uc5d0\uc11c \ud544\uc218\uc801\uc73c\ub85c \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uae00\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc744 \uc774\uc6a9\ud55c \uc790\ub3d9\ub9e4\ub9e4 \uac1c\ubc1c \uacfc\uc815\uc5d0\uc11c \uc5b4\ub5bb\uac8c pandas DataFrame\uc744 \ud65c\uc6a9\ud558\uc5ec \ud6a8\uc728\uc801\uc778 \ub370\uc774\ud130 \ubd84\uc11d\uacfc \uc804\ub7b5 \uac1c\ubc1c\uc744 \ud560 \uc218 \uc788\ub294\uc9c0\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc790\ub3d9\ub9e4\ub9e4\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c\uc790\ub3d9\ub9e4\ub9e4&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c\uc790\ub3d9\ub9e4\ub9e4","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac%ec%9e%90%eb%8f%99%eb%a7%a4%eb%a7%a4\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30064,"url":"https:\/\/atmokpo.com\/w\/30064\/","url_meta":{"origin":24020,"position":5},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uc2e4\uc2b5 \ud658\uacbd \uc124\uc815","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\ub525\ub7ec\ub2dd\uc740 \ud604\ub300 \uc778\uacf5\uc9c0\ub2a5(AI) \uae30\uc220\uc758 \ud575\uc2ec\uc73c\ub85c \uc790\ub9ac \uc7a1\uc558\uc73c\uba70, \uadf8\uc5d0 \ub530\ub77c \ub2e4\uc591\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uac00 \ub4f1\uc7a5\ud588\uc2b5\ub2c8\ub2e4. \uadf8\uc911\uc5d0\uc11c\ub3c4 \ud30c\uc774\ud1a0\uce58(PyTorch)\ub294 \ub3d9\uc801 \uc5f0\uc0b0 \ubc29\uc2dd\uacfc \uc9c1\uad00\uc801\uc778 API \ub355\ubd84\uc5d0 \ub9ce\uc740 \uc5f0\uad6c\uc790\uc640 \uac1c\ubc1c\uc790\ub4e4\uc758 \uc0ac\ub791\uc744 \ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud30c\uc774\ud1a0\uce58\ub97c \uc774\uc6a9\ud55c \ub525\ub7ec\ub2dd \uc2e4\uc2b5\uc744 \uc704\ud55c \ud658\uacbd \uc124\uc815 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud30c\uc774\ud1a0\uce58 \uc18c\uac1c \ud30c\uc774\ud1a0\uce58\ub294 Facebook AI Research Group\uc5d0 \uc758\ud574 \uac1c\ubc1c\ub41c \uc624\ud508\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24020","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=24020"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24020\/revisions"}],"predecessor-version":[{"id":24022,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24020\/revisions\/24022"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=24020"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=24020"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=24020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}