{"id":24197,"date":"2024-10-25T14:12:08","date_gmt":"2024-10-25T14:12:08","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=24197"},"modified":"2024-11-26T08:03:58","modified_gmt":"2024-11-26T08:03:58","slug":"%ed%8c%8c%ec%9d%b4%ec%8d%ac%ec%9d%98-%eb%82%b4%ec%9e%a5-%ed%95%a8%ec%88%98","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/24197\/","title":{"rendered":"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218"},"content":{"rendered":"\n<figure class=\"wp-block-audio\"><audio controls src=\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/10\/Fable_tts-1_1x_2024-10-25T15_13_22-580Z.mp3\"><\/audio><\/figure>\n\n\n\n<p>\ud30c\uc774\uc36c\uc740 \uac1c\ubc1c\uc790\ub97c \uc704\ud574 \ud48d\ubd80\ud55c \ub0b4\uc7a5 \ud568\uc218\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub4e4\uc740 \uc77c\ubc18\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc791\uc5c5\uc744 \uac04\ud3b8\ud558\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ub0b4\uc7a5 \ud568\uc218\ub4e4\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uace0, \uac01 \ud568\uc218\uc758 \uc0ac\uc6a9\ubc95\uacfc \uadf8 \uc6a9\ub840\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1.&nbsp;<code>print()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>print()<\/code>&nbsp;\ud568\uc218\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ud568\uc218 \uc911 \ud558\ub098\ub85c, \ucf58\uc194\uc5d0 \ucd9c\ub825\uc744 \ud45c\uc2dc\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc5ec\ub7ec \uac1c\uc758 \uc778\uc218\ub97c \ubc1b\uc544 \ud558\ub098\uc758 \ubb38\uc790\uc5f4\ub85c \uc5f0\uacb0\ud558\uc5ec \ucd9c\ub825\ud560 \uc218 \uc788\uc73c\uba70, \uae30\ubcf8\uc801\uc73c\ub85c \ubb38\uc790\uc5f4 \uc0ac\uc774\uc5d0 \uacf5\ubc31\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(\"Hello, World!\")\nprint(\"Python\", \"is\", \"fun\")<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Hello, World!\nPython is fun<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2.&nbsp;<code>len()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>len()<\/code>&nbsp;\ud568\uc218\ub294 \uac1d\uccb4\uc758 \uae38\uc774\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ubb38\uc790\uc5f4, \ub9ac\uc2a4\ud2b8, \ud29c\ud50c, \ub515\uc154\ub108\ub9ac \ub4f1 \uc2dc\ud000\uc2a4 \uc790\ub8cc\ud615\uc5d0 \uc8fc\ub85c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>string = \"Python\"\nprint(len(string))\n\nnumbers = &#91;1, 2, 3, 4, 5]\nprint(len(numbers))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">6\n5<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3.&nbsp;<code>type()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>type()<\/code>&nbsp;\ud568\uc218\ub294 \uac1d\uccb4\uc758 \uc790\ub8cc\ud615\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub294 \ubcc0\uc218\uac00 \uc608\uc0c1\ud55c \ud0c0\uc785\uc778\uc9c0 \ud655\uc778\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(type(3))\nprint(type(3.0))\nprint(type(\"Hello\"))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;class 'int'&gt;\n&lt;class 'float'&gt;\n&lt;class 'str'&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4.&nbsp;<code>input()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>input()<\/code>&nbsp;\ud568\uc218\ub294 \uc0ac\uc6a9\uc790\ub85c\ubd80\ud130 \ubb38\uc790\uc5f4 \uc785\ub825\uc744 \ubc1b\uc744 \ub54c \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ud30c\uc774\uc36c 3.x\uc5d0\uc11c\ub294 \ud56d\uc0c1 \ubb38\uc790\uc5f4 \ud615\ud0dc\ub85c \uc785\ub825\uc744 \ubc1b\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name = input(\"Enter your name: \")\nprint(\"Hello, \" + name + \"!\")<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5.&nbsp;<code>sum()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>sum()<\/code>&nbsp;\ud568\uc218\ub294 \uc22b\uc790 \uc2dc\ud000\uc2a4\uc758 \ud569\uacc4\ub97c \uacc4\uc0b0\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub294 \uc8fc\ub85c \ub9ac\uc2a4\ud2b8\ub098 \ud29c\ud50c\uc758 \ud569\uacc4\ub97c \uad6c\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = &#91;1, 2, 3, 4, 5]\nprint(sum(numbers))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">15<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6.&nbsp;<code>min()<\/code>\uc640&nbsp;<code>max()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>min()<\/code>&nbsp;\ud568\uc218\ub294 \uc2dc\ud000\uc2a4\uc5d0\uc11c \ucd5c\uc18c\uac12\uc744,&nbsp;<code>max()<\/code>&nbsp;\ud568\uc218\ub294 \ucd5c\ub300\uac12\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub4e4\uc740 \uc22b\uc790 \uc2dc\ud000\uc2a4\uc758 \ucd5c\uc19f\uac12\uacfc \ucd5c\ub313\uac12\uc744 \ucc3e\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = &#91;3, 1, 4, 1, 5, 9]\nprint(min(numbers))\nprint(max(numbers))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">1\n9<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">7.&nbsp;<code>sorted()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>sorted()<\/code>&nbsp;\ud568\uc218\ub294 \uc8fc\uc5b4\uc9c4 \uc2dc\ud000\uc2a4\ub97c \uc815\ub82c\ud55c \uacb0\uacfc\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub294 \uc6d0\ub798\uc758 \ub9ac\uc2a4\ud2b8\ub97c \ubcc0\uacbd\ud558\uc9c0 \uc54a\uace0 \uc0c8\ub85c\uc6b4 \uc815\ub82c\ub41c \ub9ac\uc2a4\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc624\ub984\ucc28\uc21c\uc73c\ub85c \uc815\ub82c\ub418\uba70,&nbsp;<code>reverse=True<\/code>\ub97c \uc0ac\uc6a9\ud558\uba74 \ub0b4\ub9bc\ucc28\uc21c\uc73c\ub85c \uc815\ub82c\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = &#91;3, 1, 4, 1, 5, 9]\nprint(sorted(numbers))\nprint(sorted(numbers, reverse=True))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[1, 1, 3, 4, 5, 9]\n[9, 5, 4, 3, 1, 1]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">8.&nbsp;<code>any()<\/code>\uc640&nbsp;<code>all()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>any()<\/code>&nbsp;\ud568\uc218\ub294 \uc2dc\ud000\uc2a4 \ub0b4\uc5d0\uc11c \ud558\ub098 \uc774\uc0c1\uc758 \uc694\uc18c\uac00&nbsp;<code>True<\/code>\uc77c \uacbd\uc6b0&nbsp;<code>True<\/code>\ub97c \ubc18\ud658\ud558\uace0, \uadf8\ub807\uc9c0 \uc54a\uc73c\uba74&nbsp;<code>False<\/code>\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.&nbsp;<code>all()<\/code>&nbsp;\ud568\uc218\ub294 \ubaa8\ub4e0 \uc694\uc18c\uac00&nbsp;<code>True<\/code>\uc77c \uacbd\uc6b0&nbsp;<code>True<\/code>\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bool_list = &#91;True, False, True]\nprint(any(bool_list))\nprint(all(bool_list))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">True\nFalse<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">9.&nbsp;<code>zip()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>zip()<\/code>&nbsp;\ud568\uc218\ub294 \uc5ec\ub7ec \uc2dc\ud000\uc2a4\ub97c \ubcd1\ub82c\ub85c \ubb36\uc5b4\uc90d\ub2c8\ub2e4. \uac01 \uc2dc\ud000\uc2a4\uc758 \uc694\uc18c\ub97c \ud29c\ud50c\ub85c \ubb36\uc5b4 \ub098\uc5f4\ud558\uba70, \uc2dc\ud000\uc2a4 \uc911 \uac00\uc7a5 \uc9e7\uc740 \uac83\uc758 \uae38\uc774\uc5d0 \ub9de\ucda5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>list1 = &#91;1, 2, 3]\nlist2 = &#91;'a', 'b', 'c']\nzipped = zip(list1, list2)\nprint(list(zipped))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[(1, 'a'), (2, 'b'), (3, 'c')]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">10.&nbsp;<code>enumerate()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>enumerate()<\/code>&nbsp;\ud568\uc218\ub294 \uc2dc\ud000\uc2a4\uc758 \uc694\uc18c\ub97c \uc778\ub371\uc2a4\uc640 \ud568\uaed8 \ud29c\ud50c\ub85c \ubc18\ud658\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc778\ub371\uc2a4\ub294 0\uc5d0\uc11c \uc2dc\uc791\ud558\uba70, \uc2dc\uc791\uc744 \ub2e4\ub978 \uc22b\uc790\ub85c \ubcc0\uacbd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>letters = &#91;'a', 'b', 'c']\nfor index, letter in enumerate(letters):\n    print(index, letter)<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0 a\n1 b\n2 c<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">11.&nbsp;<code>range()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>range()<\/code>&nbsp;\ud568\uc218\ub294 \uc815\uc218 \uc2dc\ud000\uc2a4\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc774 \uc2dc\ud000\uc2a4\ub294 \uc8fc\ub85c \ubc18\ubcf5\ubb38\uc5d0\uc11c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.&nbsp;<code>range()<\/code>\ub294 \uc138 \uac1c\uc758 \uc778\uc218\ub97c \ubc1b\uc744 \uc218 \uc788\uc73c\uba70, \uac01\uac01 \uc2dc\uc791\uac12, \uc885\ub8cc\uac12, \uc99d\uac10\uac12\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>for i in range(5):\n    print(i)\n\nfor i in range(1, 10, 2):\n    print(i)<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0\n1\n2\n3\n4\n1\n3\n5\n7\n9<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">12.&nbsp;<code>filter()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>filter()<\/code>&nbsp;\ud568\uc218\ub294 \uc8fc\uc5b4\uc9c4 \ud568\uc218\uc640 \uc2dc\ud000\uc2a4\ub97c \ubc1b\uc544\uc11c, \ud568\uc218\uc758 \uc870\uac74\uc744 \ub9cc\uc871\ud558\ub294 \uc694\uc18c\ub97c \uac78\ub7ec\ub0b8\ub2e4. \uacb0\uacfc\uac12\uc740 \ud544\ud130 \uac1d\uccb4\uc774\uba70,&nbsp;<code>list()<\/code>\ub97c \ud1b5\ud574 \ub9ac\uc2a4\ud2b8\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def is_even(n):\n    return n % 2 == 0\n\nnumbers = &#91;1, 2, 3, 4, 5, 6]\neven_numbers = filter(is_even, numbers)\nprint(list(even_numbers))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[2, 4, 6]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">13.&nbsp;<code>map()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>map()<\/code>&nbsp;\ud568\uc218\ub294 \uc8fc\uc5b4\uc9c4 \ud568\uc218\uc640 \uc2dc\ud000\uc2a4\ub97c \ubc1b\uc544\uc11c, \ud568\uc218\uac00 \uc801\uc6a9\ub41c \uacb0\uacfc\ub97c \ub3cc\ub824\uc900\ub2e4. \uc774\ub294 \uc8fc\uc5b4\uc9c4 \ubaa8\ub4e0 \uc694\uc18c\uc5d0 \ud568\uc218\ub97c \uc801\uc6a9\ud560 \ub54c \uc720\uc6a9\ud558\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def square(n):\n    return n * n\n\nnumbers = &#91;1, 2, 3, 4, 5]\nsquared_numbers = map(square, numbers)\nprint(list(squared_numbers))<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[1, 4, 9, 16, 25]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">14.&nbsp;<code>reduce()<\/code>&nbsp;\ud568\uc218<\/h2>\n\n\n\n<p><code>reduce()<\/code>&nbsp;\ud568\uc218\ub294 \ub204\uc801 \uacc4\uc0b0\uc744 \uc218\ud589\ud558\uc5ec \ud558\ub098\uc758 \uacb0\uacfc\ub97c \ubc18\ud658\ud558\ub294 \ud568\uc218\uc785\ub2c8\ub2e4.&nbsp;<code>reduce()<\/code>&nbsp;\ud568\uc218\ub294&nbsp;<code>functools<\/code>&nbsp;\ubaa8\ub4c8\uc5d0\uc11c \uac00\uc838\uc640\uc57c \ud569\ub2c8\ub2e4. \uc8fc\uc694 \uc0ac\uc6a9 \ucf00\uc774\uc2a4\ub294 \uc2dc\ud000\uc2a4\ub97c \ub204\uc801\ud558\uc5ec \uac12\uc744 \uacc4\uc0b0\ud560 \ub54c\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from functools import reduce\n\ndef add(x, y):\n    return x + y\n\nnumbers = &#91;1, 2, 3, 4, 5]\ntotal = reduce(add, numbers)\nprint(total)<\/code><\/pre>\n\n\n\n<p>\uacb0\uacfc:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">15<\/pre>\n\n\n\n<p>\uc704\uc758 \uc608\uc2dc\ub294 \ud30c\uc774\uc36c \ub0b4\uc7a5 \ud568\uc218\uc758 \uba87 \uac00\uc9c0 \uc608\uc81c\uc774\uba70, \uac01 \ud568\uc218\uc758 \ud2b9\uc131\uacfc \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774 \uc678\uc5d0\ub3c4 \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \ud568\uc218\ub97c \uc81c\uacf5\ud558\uba70, \uac01 \ud568\uc218\ub294 \ud2b9\uc815\ud55c \uc791\uc5c5\uc744 \ub354 \uc27d\uace0 \ube60\ub974\uac8c \ud574\uacb0\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4.<\/p>\n\n\n\n<p>\ud568\uc218\uc758 \uc0ac\uc6a9\ubc95\uc744 \uc219\uc9c0\ud558\uace0 \uc801\uc808\ud788 \ud65c\uc6a9\ud558\uba74, \ub354 \ud6a8\uc728\uc801\uc774\uace0 \uac00\ub3c5\uc131 \uc788\ub294 \ucf54\ub4dc\ub97c \uc791\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub0b4\uc7a5 \ud568\uc218\ub4e4\uc740 \uc774\ub7ec\ud55c \ubaa9\ud45c\ub97c \uc774\ub8e8\uae30 \uc704\ud55c \uae30\ubcf8\uc801\uc778 \ub3c4\uad6c\uac00 \ub420 \uac83\uc785\ub2c8\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud30c\uc774\uc36c\uc740 \uac1c\ubc1c\uc790\ub97c \uc704\ud574 \ud48d\ubd80\ud55c \ub0b4\uc7a5 \ud568\uc218\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub4e4\uc740 \uc77c\ubc18\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc791\uc5c5\uc744 \uac04\ud3b8\ud558\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ub0b4\uc7a5 \ud568\uc218\ub4e4\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uace0, \uac01 \ud568\uc218\uc758 \uc0ac\uc6a9\ubc95\uacfc \uadf8 \uc6a9\ub840\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1.&nbsp;print()&nbsp;\ud568\uc218 print()&nbsp;\ud568\uc218\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ud568\uc218 \uc911 \ud558\ub098\ub85c, \ucf58\uc194\uc5d0 \ucd9c\ub825\uc744 \ud45c\uc2dc\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc5ec\ub7ec \uac1c\uc758 \uc778\uc218\ub97c \ubc1b\uc544 \ud558\ub098\uc758 \ubb38\uc790\uc5f4\ub85c \uc5f0\uacb0\ud558\uc5ec \ucd9c\ub825\ud560 \uc218 \uc788\uc73c\uba70, \uae30\ubcf8\uc801\uc73c\ub85c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/24197\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218&#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-24197","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\uc758 \ub0b4\uc7a5 \ud568\uc218 - \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\/24197\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud30c\uc774\uc36c\uc740 \uac1c\ubc1c\uc790\ub97c \uc704\ud574 \ud48d\ubd80\ud55c \ub0b4\uc7a5 \ud568\uc218\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub4e4\uc740 \uc77c\ubc18\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc791\uc5c5\uc744 \uac04\ud3b8\ud558\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ub0b4\uc7a5 \ud568\uc218\ub4e4\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uace0, \uac01 \ud568\uc218\uc758 \uc0ac\uc6a9\ubc95\uacfc \uadf8 \uc6a9\ub840\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1.&nbsp;print()&nbsp;\ud568\uc218 print()&nbsp;\ud568\uc218\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ud568\uc218 \uc911 \ud558\ub098\ub85c, \ucf58\uc194\uc5d0 \ucd9c\ub825\uc744 \ud45c\uc2dc\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc5ec\ub7ec \uac1c\uc758 \uc778\uc218\ub97c \ubc1b\uc544 \ud558\ub098\uc758 \ubb38\uc790\uc5f4\ub85c \uc5f0\uacb0\ud558\uc5ec \ucd9c\ub825\ud560 \uc218 \uc788\uc73c\uba70, \uae30\ubcf8\uc801\uc73c\ub85c &hellip; \ub354 \ubcf4\uae30 &quot;\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/24197\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-25T14:12:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:03:58+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\/24197\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24197\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218\",\"datePublished\":\"2024-10-25T14:12:08+00:00\",\"dateModified\":\"2024-11-26T08:03:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24197\/\"},\"wordCount\":61,\"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\/24197\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/24197\/\",\"url\":\"https:\/\/atmokpo.com\/w\/24197\/\",\"name\":\"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-25T14:12:08+00:00\",\"dateModified\":\"2024-11-26T08:03:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24197\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/24197\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/24197\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218\"}]},{\"@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\uc758 \ub0b4\uc7a5 \ud568\uc218 - \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\/24197\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud30c\uc774\uc36c\uc740 \uac1c\ubc1c\uc790\ub97c \uc704\ud574 \ud48d\ubd80\ud55c \ub0b4\uc7a5 \ud568\uc218\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \ud568\uc218\ub4e4\uc740 \uc77c\ubc18\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc791\uc5c5\uc744 \uac04\ud3b8\ud558\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ub0b4\uc7a5 \ud568\uc218\ub4e4\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uace0, \uac01 \ud568\uc218\uc758 \uc0ac\uc6a9\ubc95\uacfc \uadf8 \uc6a9\ub840\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1.&nbsp;print()&nbsp;\ud568\uc218 print()&nbsp;\ud568\uc218\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \ud568\uc218 \uc911 \ud558\ub098\ub85c, \ucf58\uc194\uc5d0 \ucd9c\ub825\uc744 \ud45c\uc2dc\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc5ec\ub7ec \uac1c\uc758 \uc778\uc218\ub97c \ubc1b\uc544 \ud558\ub098\uc758 \ubb38\uc790\uc5f4\ub85c \uc5f0\uacb0\ud558\uc5ec \ucd9c\ub825\ud560 \uc218 \uc788\uc73c\uba70, \uae30\ubcf8\uc801\uc73c\ub85c &hellip; \ub354 \ubcf4\uae30 \"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218\"","og_url":"https:\/\/atmokpo.com\/w\/24197\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-25T14:12:08+00:00","article_modified_time":"2024-11-26T08:03:58+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\/24197\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/24197\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218","datePublished":"2024-10-25T14:12:08+00:00","dateModified":"2024-11-26T08:03:58+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/24197\/"},"wordCount":61,"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\/24197\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/24197\/","url":"https:\/\/atmokpo.com\/w\/24197\/","name":"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-25T14:12:08+00:00","dateModified":"2024-11-26T08:03:58+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/24197\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/24197\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/24197\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud30c\uc774\uc36c\uc758 \ub0b4\uc7a5 \ud568\uc218"}]},{"@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":24197,"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":43503,"url":"https:\/\/atmokpo.com\/w\/43503\/","url_meta":{"origin":24197,"position":1},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  018. \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45, \ub514\ubc84\uae45 \uae30\ubc95\uacfc \ub3c4\uad6c \uc18c\uac1c","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"Dart\ub294 \uac15\ub825\ud55c \ud0c0\uc785 \uc2dc\uc2a4\ud15c\uacfc \ud604\ub300\uc801\uc778 \ud074\ub798\uc2a4\ub97c \uc81c\uacf5\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c Flutter\uc640 \ud568\uaed8 \ubaa8\ubc14\uc77c \uc571 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc758 \uc8fc\uc694 \uc7a5\uc810 \uc911 \ud558\ub098\ub294 \ud6a8\uc728\uc801\uc778 \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45 \ub3c4\uad6c\uac00 \ud48d\ubd80\ud558\uac8c \uc81c\uacf5\ub41c\ub2e4\ub294 \uac83\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Dart\uc5d0\uc11c \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45\uc744 \uc704\ud55c \uae30\ubc95\uacfc \ub3c4\uad6c\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Dart\uc758 \ud14c\uc2a4\ud2b8 \ud504\ub808\uc784\uc6cc\ud06c Dart\ub294 \uae30\ubcf8\uc801\uc73c\ub85c dart:test \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec\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":24197,"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":27154,"url":"https:\/\/atmokpo.com\/w\/27154\/","url_meta":{"origin":24197,"position":3},"title":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uc774\ud56d\uacc4\uc218 \uad6c\ud558\uae30 1","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 1. \uc774\ud56d\uacc4\uc218\ub780? \uc774\ud56d\uacc4\uc218\ub294 \uc870\ud569\ub860\uc5d0\uc11c \ub450 \uac1c\uc758 \uc815\uc218 n,k\uc5d0 \ub300\ud574 \uc815\uc758\ub429\ub2c8\ub2e4. n\uac1c \uc911\uc5d0\uc11c k\uac1c\ub97c \uc120\ud0dd\ud558\ub294 \ubc29\ubc95\uc758 \uc218\ub97c \ub098\ud0c0\ub0b4\uba70, \ud45c\uae30\ubc95\uc740 C(n, k) \ub610\ub294 (n choose k)\uc785\ub2c8\ub2e4. \uc774\ud56d\uacc4\uc218\ub294 \ub2e4\uc74c\uacfc \uac19\uc774 \uacc4\uc0b0\ub429\ub2c8\ub2e4: C(n, k) = n! \/ (k! * (n-k)!) \uc5ec\uae30\uc11c n!\uc740 n\uc758 \ud329\ud1a0\ub9ac\uc5bc\ub85c, n! = n\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":28039,"url":"https:\/\/atmokpo.com\/w\/28039\/","url_meta":{"origin":24197,"position":4},"title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uce74\ub4dc \uac8c\uc784","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: [\ub0a0\uc9dc] 1. \uc18c\uac1c \ucf54\ub529\ud14c\uc2a4\ud2b8\ub294 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc790 \ucc44\uc6a9 \uacfc\uc815\uc758 \uc911\uc694\ud55c \ubd80\ubd84\uc73c\ub85c, \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c \ud480\uc774 \ub2a5\ub825\uc744 \ud3c9\uac00\ud569\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\ub85c \uce74\ub4dc \uac8c\uc784 \uad00\ub828 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \uacfc\uc815\uc744 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uce74\ub4dc \uac8c\uc784\uc740 \ub9ce\uc740 \uc0ac\ub78c\ub4e4\uc5d0\uac8c \uc775\uc219\ud55c \ud615\ud0dc\uc758 \uac8c\uc784\uc774\uba70, \uc774\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \uc54c\uace0\ub9ac\uc998 \uc0ac\uace0\ub97c \ud560 \uc218 \uc788\ub294 \uae30\ud68c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\ub294 \uc6f9 \uae30\ubc18 \ud658\uacbd\uc5d0\uc11c\u2026","rel":"","context":"&quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%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":43491,"url":"https:\/\/atmokpo.com\/w\/43491\/","url_meta":{"origin":24197,"position":5},"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":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24197","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=24197"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24197\/revisions"}],"predecessor-version":[{"id":24254,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24197\/revisions\/24254"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=24197"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=24197"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=24197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}