{"id":24063,"date":"2024-10-22T03:42:06","date_gmt":"2024-10-22T03:42:06","guid":{"rendered":"http:\/\/thelivesmart.com\/w\/?p=24063"},"modified":"2024-11-26T08:04:15","modified_gmt":"2024-11-26T08:04:15","slug":"%ed%8c%8c%ec%9d%b4%ec%8d%ac-%ea%b8%b0%eb%b3%b8-%ec%9e%90%eb%a3%8c%ed%98%95-%eb%a6%ac%ec%8a%a4%ed%8a%b8","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/24063\/","title":{"rendered":"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">\ud30c\uc774\uc36c \ub9ac\uc2a4\ud2b8 \uc790\ub8cc\ud615<\/h1>\n\n\n\n<p>\ud30c\uc774\uc36c\uc5d0\uc11c&nbsp;<strong>\ub9ac\uc2a4\ud2b8(List)<\/strong>\ub294 \uc5ec\ub7ec \uac12\uc744 \ud558\ub098\uc758 \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc788\ub294&nbsp;<strong>\uac00\ubcc0\uc801\uc778 \uc2dc\ud000\uc2a4 \uc790\ub8cc\ud615<\/strong>\uc785\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\ub294 \ub300\uad04\ud638&nbsp;<code>[]<\/code>&nbsp;\uc548\uc5d0 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc800\uc7a5\ud558\uba70, \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc758 \uac12\ub4e4\uc744 \uc11e\uc5b4\uc11c \uc800\uc7a5\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>my_list = &#91;1, 2, 3, \"hello\", True, 3.14]<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ub9ac\uc2a4\ud2b8\uc758 \ud2b9\uc9d5<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. \uc778\ub371\uc2f1\uacfc \uc2ac\ub77c\uc774\uc2f1<\/h3>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\uc758 \uac01 \uc694\uc18c\ub294 \uc778\ub371\uc2a4\ub97c \ud1b5\ud574 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc778\ub371\uc2a4\ub294 0\ubd80\ud130 \uc2dc\uc791\ud558\uba70, \uc74c\uc218 \uc778\ub371\uc2a4\ub97c \uc0ac\uc6a9\ud558\uba74 \ub4a4\uc5d0\uc11c\ubd80\ud130 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = &#91;10, 20, 30, 40, 50]\nprint(numbers&#91;0])   # 10\nprint(numbers&#91;-1])  # 50 (\ub9c8\uc9c0\ub9c9 \uc694\uc18c)<\/code><\/pre>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\uc758 \uc77c\ubd80\ubd84\uc744 \uac00\uc838\uc624\ub294 \uc2ac\ub77c\uc774\uc2f1\ub3c4 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(numbers&#91;1:4])  # &#91;20, 30, 40]\nprint(numbers&#91;:3])   # &#91;10, 20, 30]\nprint(numbers&#91;2:])   # &#91;30, 40, 50]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. \ub9ac\uc2a4\ud2b8 \uc5f0\uc0b0<\/h3>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\ub294&nbsp;<code>+<\/code>&nbsp;\uc5f0\uc0b0\uc790\ub97c \uc0ac\uc6a9\ud574 \ub2e4\ub978 \ub9ac\uc2a4\ud2b8\uc640 \uacb0\ud569\ud560 \uc218 \uc788\uc73c\uba70,&nbsp;<code>*<\/code>&nbsp;\uc5f0\uc0b0\uc790\ub97c \uc0ac\uc6a9\ud574 \ubc18\ubcf5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>list1 = &#91;1, 2, 3]\nlist2 = &#91;4, 5, 6]\ncombined = list1 + list2  # &#91;1, 2, 3, 4, 5, 6]\nrepeated = list1 * 2      # &#91;1, 2, 3, 1, 2, 3]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. \ub9ac\uc2a4\ud2b8\uc758 \uac00\ubcc0\uc131<\/h3>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\ub294&nbsp;<strong>\uac00\ubcc0(mutable)<\/strong>&nbsp;\uc790\ub8cc\ud615\uc774\ubbc0\ub85c, \uc694\uc18c\ub97c \ucd94\uac00, \uc218\uc815, \uc0ad\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uac00\ubcc0\uc131 \ub355\ubd84\uc5d0 \ub9ac\uc2a4\ud2b8\ub294 \ub370\uc774\ud130\ub97c \uc790\uc720\ub86d\uac8c \uc870\uc791\ud558\uae30\uc5d0 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>my_list = &#91;1, 2, 3]\nmy_list&#91;1] = 20          # &#91;1, 20, 3]\nmy_list.append(4)        # &#91;1, 20, 3, 4]\nmy_list.insert(1, 15)    # &#91;1, 15, 20, 3, 4]\nmy_list.remove(3)        # &#91;1, 15, 20, 4]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4. \ub9ac\uc2a4\ud2b8 \uba54\uc11c\ub4dc<\/h3>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\uc5d0\ub294 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \uba54\uc11c\ub4dc\ub4e4\uc774 \uc788\uc5b4, \ub9ac\uc2a4\ud2b8\ub97c \uc870\uc791\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub300\ud45c\uc801\uc778 \ub9ac\uc2a4\ud2b8 \uba54\uc11c\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>list.append(x)<\/code>: \ub9ac\uc2a4\ud2b8\uc758 \ub9c8\uc9c0\ub9c9\uc5d0 \uc694\uc18c \ucd94\uac00<\/li>\n\n\n\n<li><code>list.insert(i, x)<\/code>: \ud2b9\uc815 \uc704\uce58\uc5d0 \uc694\uc18c \uc0bd\uc785<\/li>\n\n\n\n<li><code>list.remove(x)<\/code>: \ub9ac\uc2a4\ud2b8\uc5d0\uc11c \uccab \ubc88\uc9f8\ub85c \ub4f1\uc7a5\ud558\ub294 \ud2b9\uc815 \uc694\uc18c \uc81c\uac70<\/li>\n\n\n\n<li><code>list.pop(i)<\/code>: \ud2b9\uc815 \uc704\uce58\uc758 \uc694\uc18c\ub97c \uc81c\uac70\ud558\uace0 \ubc18\ud658 (<code>i<\/code>\uac00 \uc5c6\uc73c\uba74 \ub9c8\uc9c0\ub9c9 \uc694\uc18c \uc81c\uac70)<\/li>\n\n\n\n<li><code>list.index(x)<\/code>: \ud2b9\uc815 \uc694\uc18c\uc758 \uccab \ubc88\uc9f8 \uc704\uce58 \ubc18\ud658<\/li>\n\n\n\n<li><code>list.sort()<\/code>: \ub9ac\uc2a4\ud2b8\ub97c \uc624\ub984\ucc28\uc21c\uc73c\ub85c \uc815\ub82c<\/li>\n\n\n\n<li><code>list.reverse()<\/code>: \ub9ac\uc2a4\ud2b8\uc758 \uc694\uc18c \uc21c\uc11c\ub97c \ubc18\ub300\ub85c \ub4a4\uc9d1\uc74c<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>my_list = &#91;3, 1, 4, 1, 5, 9]\nmy_list.sort()        # &#91;1, 1, 3, 4, 5, 9]\nmy_list.reverse()     # &#91;9, 5, 4, 3, 1, 1]\nmy_list.pop()         # 1, \ub9ac\uc2a4\ud2b8\ub294 &#91;9, 5, 4, 3, 1]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5. \ub9ac\uc2a4\ud2b8 \ucef4\ud504\ub9ac\ud5e8\uc158<\/h3>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8 \ucef4\ud504\ub9ac\ud5e8\uc158(List Comprehension)\uc740 \ub9ac\uc2a4\ud2b8\ub97c \uac04\uacb0\ud558\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc73c\ub85c, \ubc18\ubcf5\ubb38\uacfc \uc870\uac74\ubb38\uc744 \uc774\uc6a9\ud574 \uc0c8\ub85c\uc6b4 \ub9ac\uc2a4\ud2b8\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>squares = &#91;x * x for x in range(1, 6)]  # &#91;1, 4, 9, 16, 25]\nfiltered = &#91;x for x in range(10) if x % 2 == 0]  # &#91;0, 2, 4, 6, 8]<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\uc694\uc57d<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\ub9ac\uc2a4\ud2b8\ub294 \uc5ec\ub7ec \uac12\uc744 \ud558\ub098\uc758 \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc788\ub294 \uc790\ub8cc\ud615\uc73c\ub85c, \uac00\ubcc0\uc801\uc778 \ud2b9\uc9d5\uc744 \uac00\uc9d1\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\uc778\ub371\uc2f1\uacfc \uc2ac\ub77c\uc774\uc2f1\uc744 \ud1b5\ud574 \ub9ac\uc2a4\ud2b8\uc758 \uc694\uc18c\uc5d0 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ub9ac\uc2a4\ud2b8\ub294 \uacb0\ud569(<code>+<\/code>) \ubc0f \ubc18\ubcf5(<code>*<\/code>) \uc5f0\uc0b0\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ub9ac\uc2a4\ud2b8\uc758 \ub2e4\uc591\ud55c \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc694\uc18c\ub97c \ucd94\uac00, \uc218\uc815, \uc0ad\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ub9ac\uc2a4\ud2b8 \ucef4\ud504\ub9ac\ud5e8\uc158\uc744 \uc0ac\uc6a9\ud558\uba74 \uac04\uacb0\ud558\uac8c \ub9ac\uc2a4\ud2b8\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<\/ul>\n\n\n\n<p>\ub9ac\uc2a4\ud2b8\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uc790\ub8cc\ud615 \uc911 \ud558\ub098\ub85c, \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uc870\uc791\ud558\ub294 \ub370 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\uc758 \ub2e4\uc591\ud55c \uae30\ub2a5\ub4e4\uc744 \ud65c\uc6a9\ud558\uc5ec \ub354\uc6b1 \ud6a8\uc728\uc801\uc778 \ucf54\ub4dc\ub97c \uc791\uc131\ud574 \ubcf4\uc138\uc694!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud30c\uc774\uc36c \ub9ac\uc2a4\ud2b8 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c&nbsp;\ub9ac\uc2a4\ud2b8(List)\ub294 \uc5ec\ub7ec \uac12\uc744 \ud558\ub098\uc758 \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc788\ub294&nbsp;\uac00\ubcc0\uc801\uc778 \uc2dc\ud000\uc2a4 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\ub294 \ub300\uad04\ud638&nbsp;[]&nbsp;\uc548\uc5d0 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc800\uc7a5\ud558\uba70, \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc758 \uac12\ub4e4\uc744 \uc11e\uc5b4\uc11c \uc800\uc7a5\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: \ub9ac\uc2a4\ud2b8\uc758 \ud2b9\uc9d5 1. \uc778\ub371\uc2f1\uacfc \uc2ac\ub77c\uc774\uc2f1 \ub9ac\uc2a4\ud2b8\uc758 \uac01 \uc694\uc18c\ub294 \uc778\ub371\uc2a4\ub97c \ud1b5\ud574 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc778\ub371\uc2a4\ub294 0\ubd80\ud130 \uc2dc\uc791\ud558\uba70, \uc74c\uc218 \uc778\ub371\uc2a4\ub97c \uc0ac\uc6a9\ud558\uba74 \ub4a4\uc5d0\uc11c\ubd80\ud130 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\uc758 \uc77c\ubd80\ubd84\uc744 \uac00\uc838\uc624\ub294 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/24063\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8&#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-24063","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 \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \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\/24063\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud30c\uc774\uc36c \ub9ac\uc2a4\ud2b8 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c&nbsp;\ub9ac\uc2a4\ud2b8(List)\ub294 \uc5ec\ub7ec \uac12\uc744 \ud558\ub098\uc758 \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc788\ub294&nbsp;\uac00\ubcc0\uc801\uc778 \uc2dc\ud000\uc2a4 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\ub294 \ub300\uad04\ud638&nbsp;[]&nbsp;\uc548\uc5d0 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc800\uc7a5\ud558\uba70, \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc758 \uac12\ub4e4\uc744 \uc11e\uc5b4\uc11c \uc800\uc7a5\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: \ub9ac\uc2a4\ud2b8\uc758 \ud2b9\uc9d5 1. \uc778\ub371\uc2f1\uacfc \uc2ac\ub77c\uc774\uc2f1 \ub9ac\uc2a4\ud2b8\uc758 \uac01 \uc694\uc18c\ub294 \uc778\ub371\uc2a4\ub97c \ud1b5\ud574 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc778\ub371\uc2a4\ub294 0\ubd80\ud130 \uc2dc\uc791\ud558\uba70, \uc74c\uc218 \uc778\ub371\uc2a4\ub97c \uc0ac\uc6a9\ud558\uba74 \ub4a4\uc5d0\uc11c\ubd80\ud130 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\uc758 \uc77c\ubd80\ubd84\uc744 \uac00\uc838\uc624\ub294 &hellip; \ub354 \ubcf4\uae30 &quot;\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/24063\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-22T03:42:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:04:15+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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8\",\"datePublished\":\"2024-10-22T03:42:06+00:00\",\"dateModified\":\"2024-11-26T08:04:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/\"},\"wordCount\":14,\"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\/24063\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/\",\"url\":\"https:\/\/atmokpo.com\/w\/24063\/\",\"name\":\"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-22T03:42:06+00:00\",\"dateModified\":\"2024-11-26T08:04:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/24063\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/24063\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8\"}]},{\"@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 \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \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\/24063\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud30c\uc774\uc36c \ub9ac\uc2a4\ud2b8 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc5d0\uc11c&nbsp;\ub9ac\uc2a4\ud2b8(List)\ub294 \uc5ec\ub7ec \uac12\uc744 \ud558\ub098\uc758 \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc788\ub294&nbsp;\uac00\ubcc0\uc801\uc778 \uc2dc\ud000\uc2a4 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\ub294 \ub300\uad04\ud638&nbsp;[]&nbsp;\uc548\uc5d0 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc800\uc7a5\ud558\uba70, \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc758 \uac12\ub4e4\uc744 \uc11e\uc5b4\uc11c \uc800\uc7a5\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uba74: \ub9ac\uc2a4\ud2b8\uc758 \ud2b9\uc9d5 1. \uc778\ub371\uc2f1\uacfc \uc2ac\ub77c\uc774\uc2f1 \ub9ac\uc2a4\ud2b8\uc758 \uac01 \uc694\uc18c\ub294 \uc778\ub371\uc2a4\ub97c \ud1b5\ud574 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc778\ub371\uc2a4\ub294 0\ubd80\ud130 \uc2dc\uc791\ud558\uba70, \uc74c\uc218 \uc778\ub371\uc2a4\ub97c \uc0ac\uc6a9\ud558\uba74 \ub4a4\uc5d0\uc11c\ubd80\ud130 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\uc758 \uc77c\ubd80\ubd84\uc744 \uac00\uc838\uc624\ub294 &hellip; \ub354 \ubcf4\uae30 \"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8\"","og_url":"https:\/\/atmokpo.com\/w\/24063\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-22T03:42:06+00:00","article_modified_time":"2024-11-26T08:04:15+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/24063\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/24063\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8","datePublished":"2024-10-22T03:42:06+00:00","dateModified":"2024-11-26T08:04:15+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/24063\/"},"wordCount":14,"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\/24063\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/24063\/","url":"https:\/\/atmokpo.com\/w\/24063\/","name":"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-22T03:42:06+00:00","dateModified":"2024-11-26T08:04:15+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/24063\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/24063\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/24063\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud30c\uc774\uc36c \uae30\ubcf8 \uc790\ub8cc\ud615 : \ub9ac\uc2a4\ud2b8"}]},{"@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":24063,"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":43491,"url":"https:\/\/atmokpo.com\/w\/43491\/","url_meta":{"origin":24063,"position":1},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  012. Dart\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \ucf5c\ub809\uc158, \uace0\ucc28 \ud568\uc218\uc640 \ud544\ud130\ub9c1 \ub9e4\ud551","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"Dart\ub294 \ud604\ub300\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \ub2e4\uc591\ud55c \uae30\ub2a5\uacfc \uac15\ub825\ud55c \ucf5c\ub809\uc158\uc744 \uc81c\uacf5\ud558\uc5ec \uac1c\ubc1c\uc790\ub4e4\uc774 \ud6a8\uc728\uc801\uc73c\ub85c \ucf54\ub4dc\ub97c \uc791\uc131\ud560 \uc218 \uc788\uac8c \ub3d5\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Dart\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \ucf5c\ub809\uc158, \uace0\ucc28 \ud568\uc218 \ubc0f \uc774\ub7ec\ud55c \ucf5c\ub809\uc158\uc744 \ud544\ud130\ub9c1\ud558\uace0 \ub9e4\ud551\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Dart\uc758 \ucf5c\ub809\uc158(Collection) Dart\uc5d0\uc11c \ucf5c\ub809\uc158\uc740 \uc5ec\ub7ec \ub370\uc774\ud130\ub97c \uad6c\uc870\uc801\uc73c\ub85c \uc800\uc7a5\ud558\uace0 \uad00\ub9ac\ud560 \uc218 \uc788\ub294 \ub370\uc774\ud130 \ud0c0\uc785\uc785\ub2c8\ub2e4. Dart\uc5d0\uc11c\ub294 \uc8fc\ub85c List, Set,\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":26986,"url":"https:\/\/atmokpo.com\/w\/26986\/","url_meta":{"origin":24063,"position":2},"title":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \u2018\uc88b\uc740 \uc218\u2019 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 | \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc22b\uc790 n\uc774 \u2018\uc88b\uc740 \uc218\u2019\ub77c\uba74, \uadf8 \uc218\ub97c \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \u2018\uc88b\uc740 \uc218\u2019\uc758 \uc870\uac74\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. \u2018\uc88b\uc740 \uc218\u2019\ub294 \ub450 \uc790\ub9ac \uc774\uc0c1\uc758 \uc790\uc5f0\uc218\uc774\ub2e4. \uac01 \uc790\ub9ac\uc758 \ud569\uc774 \ud640\uc218\uc778 \uc218\ub97c \u2018\uc88b\uc740 \uc218\u2019\ub85c \uc815\uc758\ud55c\ub2e4. \uc8fc\uc5b4\uc9c4 n \uc774\ud558\uc758 \ubaa8\ub4e0 \u2018\uc88b\uc740 \uc218\u2019\ub97c \ucc3e\uc544\ub0b4\uc5b4 \ub9ac\uc2a4\ud2b8\ub85c \ubc18\ud658\ud558\ub77c. \uc608\ub97c \ub4e4\uc5b4, n\uc774 30\uc77c\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":27238,"url":"https:\/\/atmokpo.com\/w\/27238\/","url_meta":{"origin":24063,"position":3},"title":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud589\ub82c \uacf1 \uc5f0\uc0b0 \ud69f\uc218\uc758 \ucd5c\uc19f\uac12 \uad6c\ud558\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 \uc124\uba85 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c \ud589\ub82c\uc758 \uacf1\uc148\uc740 \ube48\ubc88\ud558\uac8c \ub4f1\uc7a5\ud558\ub294 \ubb38\uc81c \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \ud2b9\ud788, \uc8fc\uc5b4\uc9c4 \ud589\ub82c\ub4e4\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uacf1\ud558\ub294 \ubc29\ubc95\uc744 \ubb3b\ub294 \ubb38\uc81c\ub294 \ucd5c\uc801\uc758 \uc54c\uace0\ub9ac\uc998 \uc124\uacc4\ub97c \ud1b5\ud574 \uc5f0\uc0b0 \ud69f\uc218\ub97c \ucd5c\uc18c\ud654\ud560 \uc218 \uc788\ub294 \uadc0\uc911\ud55c \uae30\uc220\uc744 \ud544\uc694\ub85c \ud569\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \uc8fc\uc5b4\uc9c4 \ud589\ub82c\uc758 \uacf1 \uc5f0\uc0b0\uc758 \ucd5c\uc19f\uac12\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\ub97c \ub2e4\ub8e8\uaca0\uc2b5\ub2c8\ub2e4. \ubb38\uc81c\ub294 \ub2e4\uc74c\uacfc\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":43489,"url":"https:\/\/atmokpo.com\/w\/43489\/","url_meta":{"origin":24063,"position":4},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  011. Dart\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \ucf5c\ub809\uc158, List, Set, Map\uc758 \uc0ac\uc6a9\ubc95","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"Dart \uc5b8\uc5b4\ub294 \uac15\ub825\ud55c \ud0c0\uc785 \uc2dc\uc2a4\ud15c\uacfc \ud568\uaed8 \ub9e4\uc6b0 \ub6f0\uc5b4\ub09c \ucf5c\ub809\uc158 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. Dart\uc5d0\uc11c\uc758 \ucf5c\ub809\uc158\uc774\ub780 \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uc870\uc791\ud560 \uc218 \uc788\ub294 \uac1d\uccb4\ub97c \uc758\ubbf8\ud569\ub2c8\ub2e4. \ubcf8 \uae00\uc5d0\uc11c\ub294 List, Set, Map\uc774\ub77c\ub294 \uc138 \uac00\uc9c0 \uc8fc\uc694 \ucf5c\ub809\uc158\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uace0, \ub2e4\uc591\ud55c \uc0ac\uc6a9\ubc95\uacfc \uc608\uc81c\ub97c \ud1b5\ud574 \uac01 \ucf5c\ub809\uc158\uc758 \ud2b9\uc9d5\uc744 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. List List\ub294 \uc21c\uc11c\uac00 \uc788\ub294 \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \ucf5c\ub809\uc158\uc785\ub2c8\ub2e4. Dart\uc758 List\ub294\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":27232,"url":"https:\/\/atmokpo.com\/w\/27232\/","url_meta":{"origin":24063,"position":5},"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":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24063","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=24063"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24063\/revisions"}],"predecessor-version":[{"id":24065,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24063\/revisions\/24065"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=24063"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=24063"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=24063"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}