{"id":24169,"date":"2024-10-25T14:07:01","date_gmt":"2024-10-25T14:07:01","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=24169"},"modified":"2024-11-26T08:04:03","modified_gmt":"2024-11-26T08:04:03","slug":"02%ec%9e%a5-%ed%8c%8c%ec%9d%b4%ec%8d%ac-%ed%94%84%eb%a1%9c%ea%b7%b8%eb%9e%98%eb%b0%8d%ec%9d%98-%ea%b8%b0%ec%b4%88-%ec%9e%90%eb%a3%8c%ed%98%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/24169\/","title":{"rendered":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615"},"content":{"rendered":"<h1><\/h1>\n<p>\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0\uc11c \uc790\ub8cc\ud615(Data Types)\uc740 \uac01 \ub370\uc774\ud130\uac00 \uc5b4\ub5a4 \uc885\ub958\uc758 \uac12\uc778\uc9c0 \uc54c\ub824\uc8fc\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \uc790\ub8cc\ud615\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub97c \uc774\ud574\ud558\uace0 \uc62c\ubc14\ub974\uac8c \uc0ac\uc6a9\ud558\ub294 \uac83\uc740 \ud6a8\uc728\uc801\uc774\uace0 \uc624\ub958 \uc5c6\ub294 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\ub294 \ub370 \uc788\uc5b4 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ubc0f \uadf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc2ec\ub3c4 \uc788\uac8c \ud0d0\uad6c\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>\ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615<\/h2>\n<p>\ud30c\uc774\uc36c\uc758 \uc790\ub8cc\ud615\uc740 \ud06c\uac8c \ubd88\ub9b0\ud615(<code>bool<\/code>), \uc815\uc218\ud615(<code>int<\/code>), \ubd80\ub3d9\uc18c\uc218\uc810\ud615(<code>float<\/code>), \ubcf5\uc18c\uc218\ud615(<code>complex<\/code>), \ubb38\uc790\ud615(<code>str<\/code>), \ub9ac\uc2a4\ud2b8\ud615(<code>list<\/code>), \ud29c\ud50c\ud615(<code>tuple<\/code>), \uc138\ud2b8\ud615(<code>set<\/code>), \ub515\uc154\ub108\ub9ac\ud615(<code>dict<\/code>) \ub4f1\uc73c\ub85c \ubd84\ub958\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>\ubd88\ub9b0\ud615(<code>bool<\/code>)<\/h3>\n<p>\ubd88\ub9b0\ud615\uc740 \ub17c\ub9ac\uc801\uc778 \ucc38(<code>True<\/code>)\uacfc \uac70\uc9d3(<code>False<\/code>)\uc744 \ud45c\ud604\ud569\ub2c8\ub2e4. \uc8fc\ub85c \uc870\uac74\ubb38\uc5d0\uc11c \uc911\uc810\uc801\uc73c\ub85c \uc0ac\uc6a9\ub418\uba70, \uadf8 \uc678\uc5d0\ub3c4 \ub17c\ub9ac \uc5f0\uc0b0\uc5d0 \ud65c\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>is_raining = True\nis_sunny = False\nprint(is_raining and is_sunny)  # \ucd9c\ub825: False\nprint(is_raining or is_sunny)   # \ucd9c\ub825: True\n<\/code><\/pre>\n<\/div>\n<h3>\uc815\uc218\ud615(<code>int<\/code>)<\/h3>\n<p>\uc815\uc218\ud615\uc740 \uc815\uc218\ub97c \ud45c\ud604\ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc740 \uc784\uc758\uc758 \uc815\ubc00\ub3c4\ub97c \uc9c0\uc6d0\ud558\ubbc0\ub85c \uba54\ubaa8\ub9ac\uac00 \ud5c8\ub77d\ud558\ub294 \ud55c \uc815\uc218\uc758 \uc790\ub9bf\uc218\uc5d0 \uc81c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>large_number = 10000000000000000000\nsmall_number = -42\nprint(large_number + small_number)  # \ucd9c\ub825: 9999999999999999958\n<\/code><\/pre>\n<\/div>\n<h3>\ubd80\ub3d9\uc18c\uc218\uc810\ud615(<code>float<\/code>)<\/h3>\n<p>\ubd80\ub3d9\uc18c\uc218\uc810\ud615\uc740 \uc18c\uc218\uc810\uc774 \uc788\ub294 \uc22b\uc790(\uc2e4\uc218)\ub97c \ud45c\ud604\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ubd80\ub3d9\uc18c\uc218\uc810 \uc218\uc758 \uc815\ud655\uc131\uc740 \uc0ac\uc6a9\uc911\uc778 \uc2dc\uc2a4\ud15c\uc758 \uc774\uc9c4 \ud45c\ud604 \ubc29\uc2dd\uc5d0 \ub530\ub77c \ub2e4\uc18c \ucc28\uc774\uac00 \ub0a0 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>pi = 3.141592653589793\nradius = 5.0\narea = pi * (radius ** 2)\nprint(\"\uc6d0\uc758 \uba74\uc801:\", area)  # \ucd9c\ub825: \uc6d0\uc758 \uba74\uc801: 78.53981633974483\n<\/code><\/pre>\n<\/div>\n<h3>\ubcf5\uc18c\uc218\ud615(<code>complex<\/code>)<\/h3>\n<p>\ubcf5\uc18c\uc218\ud615\uc740 \uc2e4\uc218\ubd80\uc640 \ud5c8\uc218\ubd80\ub85c \uad6c\uc131\ub41c \ubcf5\uc18c\uc218\ub97c \ud45c\ud604\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ubcf5\uc18c\uc218\ub294 \uc8fc\ub85c \uacfc\ud559 \uacc4\uc0b0\uc774\ub098 \uacf5\ud559\uc801 \uc218\ud559\uc5d0\uc11c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>z = 3 + 4j\nprint(\"\uc2e4\uc218\ubd80:\", z.real)  # \ucd9c\ub825: \uc2e4\uc218\ubd80: 3.0\nprint(\"\ud5c8\uc218\ubd80:\", z.imag)  # \ucd9c\ub825: \ud5c8\uc218\ubd80: 4.0\n<\/code><\/pre>\n<\/div>\n<h3>\ubb38\uc790\ud615(<code>str<\/code>)<\/h3>\n<p>\ubb38\uc790\uc5f4\uc740 \ud14d\uc2a4\ud2b8\ub97c \ub098\ud0c0\ub0b4\uba70, \uc791\uc740 \ub530\uc634\ud45c\ub098 \ud070 \ub530\uc634\ud45c\ub85c \ub458\ub7ec\uc2f8\uc5ec \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ubb38\uc790\uc5f4\uc740 \ubd88\ubcc0(immutable) \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>greeting = \"Hello, World!\"\nname = 'Alice'\nmessage = greeting + \" \" + name\nprint(message)  # \ucd9c\ub825: Hello, World! Alice\n<\/code><\/pre>\n<\/div>\n<h3>\ub9ac\uc2a4\ud2b8\ud615(<code>list<\/code>)<\/h3>\n<p>\ub9ac\uc2a4\ud2b8\ub294 \uc5ec\ub7ec \uac12\uc744 \uc21c\uc11c\ub300\ub85c \uc800\uc7a5\ud560 \uc218 \uc788\ub294 \uc790\ub8cc\ud615\uc73c\ub85c, \ub300\uad04\ud638([])\ub85c \uc815\uc758\ub429\ub2c8\ub2e4. \ub9ac\uc2a4\ud2b8\ub294 \uac00\ubcc0(mutable) \uc790\ub8cc\ud615\uc73c\ub85c, \uc694\uc18c\uc758 \ucd94\uac00, \uc0ad\uc81c \ubc0f \uc218\uc815\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>fruits = [\"apple\", \"banana\", \"cherry\"]\nfruits.append(\"orange\")\nprint(fruits)  # \ucd9c\ub825: ['apple', 'banana', 'cherry', 'orange']\nfruits[1] = \"blueberry\"\nprint(fruits)  # \ucd9c\ub825: ['apple', 'blueberry', 'cherry', 'orange']\n<\/code><\/pre>\n<\/div>\n<h3>\ud29c\ud50c\ud615(<code>tuple<\/code>)<\/h3>\n<p>\ud29c\ud50c\uc740 \ub9ac\uc2a4\ud2b8\uc640 \uc720\uc0ac\ud558\uc9c0\ub9cc, \ubd88\ubcc0(immutable)\ud55c \ud2b9\uc131\uc744 \uac16\uc2b5\ub2c8\ub2e4. \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud55c \ub300\uc0c1\uc744 \uad00\ub9ac\ud560 \ub54c \uc720\uc6a9\ud569\ub2c8\ub2e4. \uc18c\uad04\ud638(())\ub85c \uc815\uc758\ub429\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>coordinates = (10.0, 20.0)\n# coordinates[0] = 15.0 # \uc624\ub958 \ubc1c\uc0dd: 'tuple' object does not support item assignment\nprint(coordinates)  # \ucd9c\ub825: (10.0, 20.0)\n<\/code><\/pre>\n<\/div>\n<h3>\uc138\ud2b8\ud615(<code>set<\/code>)<\/h3>\n<p>\uc138\ud2b8\ub294 \uc911\ubcf5\uc774 \uc5c6\ub294 \uc694\uc18c\uc758 \ubaa8\uc74c\uc73c\ub85c, \uc21c\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \uc9d1\ud569 \uad00\ub828 \uc5f0\uc0b0\uc744 \ud560 \ub54c \uc720\uc6a9\ud569\ub2c8\ub2e4. \uc911\uad04\ud638({})\ub85c \uc815\uc758\ub429\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>fruit_set = {\"apple\", \"banana\", \"cherry\"}\nfruit_set.add(\"orange\")\nprint(fruit_set)  # \ucd9c\ub825\uc758 \uc21c\uc11c\ub294 \ub79c\ub364: {'orange', 'banana', 'cherry', 'apple'}\n\n# \uc694\uc18c \uc0ad\uc81c \uc608\uc2dc\nfruit_set.remove(\"banana\")\nprint(fruit_set)  # \ucd9c\ub825: {'orange', 'cherry', 'apple'}\n<\/code><\/pre>\n<\/div>\n<h3>\ub515\uc154\ub108\ub9ac\ud615(<code>dict<\/code>)<\/h3>\n<p>\ub515\uc154\ub108\ub9ac\ub294 \ud0a4\/\uac12 \uc30d\uc744 \uc800\uc7a5\ud558\ub294 \uc790\ub8cc\ud615\uc785\ub2c8\ub2e4. \ub300\uad04\ud638({})\ub85c \uc815\uc758\ub418\uba70, \ud0a4\uac12\uc740 \uc911\ubcf5\ub418\uc9c0 \uc54a\uc544\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>person = {\"name\": \"John\", \"age\": 30, \"job\": \"developer\"}\nprint(person[\"name\"])  # \ucd9c\ub825: John\n\n# \uc0c8\ub85c\uc6b4 \ud0a4\/\uac12 \uc30d \ucd94\uac00\nperson[\"city\"] = \"New York\"\nprint(person)  # \ucd9c\ub825: {'name': 'John', 'age': 30, 'job': 'developer', 'city': 'New York'}<\/code><\/pre>\n<\/div>\n<h2>\uc790\ub8cc\ud615 \ubcc0\ud658<\/h2>\n<p>\ud30c\uc774\uc36c\uc5d0\uc11c \uc790\ub8cc\ud615\uc744 \ubcc0\ud658\ud558\ub294 \uac83\uc740 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \uc8fc\ub85c \uba85\uc2dc\uc801 \ubcc0\ud658(explicit conversion)\uc774\ub098 \uc554\uc2dc\uc801 \ubcc0\ud658(implicit conversion)\uc744 \ud1b5\ud574 \uc774\ub8e8\uc5b4\uc9d1\ub2c8\ub2e4.<\/p>\n<h3>\uba85\uc2dc\uc801 \ubcc0\ud658(\ud615\ubcc0\ud658)<\/h3>\n<p>\uba85\uc2dc\uc801 \ubcc0\ud658\uc740 \uac1c\ubc1c\uc790\uac00 \uc9c1\uc811 \ucf54\ub4dc \ub0b4\uc5d0\uc11c \ubcc0\ud658\uc744 \uba85\ud655\ud788 \ub098\ud0c0\ub0c4\uc73c\ub85c\uc368 \uc774\ub8e8\uc5b4\uc9d1\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ud615\ubcc0\ud658 \ud568\uc218\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code># \uc815\uc218\ub97c \ubb38\uc790\uc5f4\ub85c \ubcc0\ud658\nnum = 123\nnum_str = str(num)\nprint(type(num_str))  # \ucd9c\ub825: &lt;class 'str'&gt;\n\n# \ubb38\uc790\uc5f4\uc744 \uc815\uc218\ub85c \ubcc0\ud658\nstr_num = \"456\"\nnum_int = int(str_num)\nprint(type(num_int))  # \ucd9c\ub825: &lt;class 'int'&gt;\n\n# \uc815\uc218\ub97c \ubd80\ub3d9\uc18c\uc218\uc810\uc73c\ub85c \ubcc0\ud658\nint_num = 10\nfloat_num = float(int_num)\nprint(float_num)  # \ucd9c\ub825: 10.0\n<\/code><\/pre>\n<\/div>\n<h3>\uc554\uc2dc\uc801 \ubcc0\ud658(\uc790\ub3d9 \ud615\ubcc0\ud658)<\/h3>\n<p>\uc554\uc2dc\uc801 \ubcc0\ud658\uc740 \ud30c\uc774\uc36c\uc774 \uc790\ub3d9\uc73c\ub85c \uc9c4\ud589\ud558\ub294 \ud615 \ubcc0\ud658\uc744 \ub9d0\ud569\ub2c8\ub2e4. \ub370\uc774\ud130 \uc190\uc2e4\uc758 \uc704\ud5d8\uc774 \uc5c6\ub294 \uacbd\uc6b0\uc5d0 \uc8fc\ub85c \ubc1c\uc0dd\ud569\ub2c8\ub2e4.<\/p>\n<div class=\"example\">\n<h4>\uc608\uc2dc<\/h4>\n<pre><code>int_num = 5\nfloat_num = 2.3\nresult = int_num + float_num\nprint(result)  # \ucd9c\ub825: 7.3\nprint(type(result))  # \ucd9c\ub825: &lt;class 'float'&gt;\n<\/code><\/pre>\n<\/div>\n<h2>\ub9fa\uc74c\ub9d0<\/h2>\n<p>\uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \ub2e4\uc591\ud55c \uc790\ub8cc\ud615\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uac01 \uc790\ub8cc\ud615\uc758 \ud2b9\uc131\uacfc \uc62c\ubc14\ub978 \uc0ac\uc6a9\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \ubcf4\ub2e4 \uae4a\uc774 \uc788\uac8c \ubc30\uc6b0\ub294 \ub370 \uc788\uc5b4 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ub2e4\uc74c \uc7a5\uc5d0\uc11c\ub294 \uc81c\uc5b4\ubb38\uacfc \ud568\uc218 \ub4f1 \ub354 \ubc1c\uc804\ub41c \uc8fc\uc81c\ub97c \ub2e4\ub8e8\uba70, \uc774\ub97c \ud1b5\ud574 \ud30c\uc774\uc36c\uc744 \uc0ac\uc6a9\ud55c \ubcf4\ub2e4 \ubcf5\ud569\uc801\uc774\uace0 \uac15\ub825\ud55c \ud504\ub85c\uadf8\ub7a8\uc744 \uc791\uc131\ud560 \uc218 \uc788\uac8c \ub3c4\uc640\ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0\uc11c \uc790\ub8cc\ud615(Data Types)\uc740 \uac01 \ub370\uc774\ud130\uac00 \uc5b4\ub5a4 \uc885\ub958\uc758 \uac12\uc778\uc9c0 \uc54c\ub824\uc8fc\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \uc790\ub8cc\ud615\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub97c \uc774\ud574\ud558\uace0 \uc62c\ubc14\ub974\uac8c \uc0ac\uc6a9\ud558\ub294 \uac83\uc740 \ud6a8\uc728\uc801\uc774\uace0 \uc624\ub958 \uc5c6\ub294 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\ub294 \ub370 \uc788\uc5b4 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ubc0f \uadf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc2ec\ub3c4 \uc788\uac8c \ud0d0\uad6c\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc758 \uc790\ub8cc\ud615\uc740 \ud06c\uac8c \ubd88\ub9b0\ud615(bool), \uc815\uc218\ud615(int), \ubd80\ub3d9\uc18c\uc218\uc810\ud615(float), \ubcf5\uc18c\uc218\ud615(complex), \ubb38\uc790\ud615(str), \ub9ac\uc2a4\ud2b8\ud615(list), \ud29c\ud50c\ud615(tuple), &hellip; <a href=\"https:\/\/atmokpo.com\/w\/24169\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615&#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-24169","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>02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \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\/24169\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0\uc11c \uc790\ub8cc\ud615(Data Types)\uc740 \uac01 \ub370\uc774\ud130\uac00 \uc5b4\ub5a4 \uc885\ub958\uc758 \uac12\uc778\uc9c0 \uc54c\ub824\uc8fc\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \uc790\ub8cc\ud615\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub97c \uc774\ud574\ud558\uace0 \uc62c\ubc14\ub974\uac8c \uc0ac\uc6a9\ud558\ub294 \uac83\uc740 \ud6a8\uc728\uc801\uc774\uace0 \uc624\ub958 \uc5c6\ub294 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\ub294 \ub370 \uc788\uc5b4 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ubc0f \uadf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc2ec\ub3c4 \uc788\uac8c \ud0d0\uad6c\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc758 \uc790\ub8cc\ud615\uc740 \ud06c\uac8c \ubd88\ub9b0\ud615(bool), \uc815\uc218\ud615(int), \ubd80\ub3d9\uc18c\uc218\uc810\ud615(float), \ubcf5\uc18c\uc218\ud615(complex), \ubb38\uc790\ud615(str), \ub9ac\uc2a4\ud2b8\ud615(list), \ud29c\ud50c\ud615(tuple), &hellip; \ub354 \ubcf4\uae30 &quot;02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/24169\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-25T14:07:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:04:03+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\/24169\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24169\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615\",\"datePublished\":\"2024-10-25T14:07:01+00:00\",\"dateModified\":\"2024-11-26T08:04:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24169\/\"},\"wordCount\":10,\"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\/24169\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/24169\/\",\"url\":\"https:\/\/atmokpo.com\/w\/24169\/\",\"name\":\"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-25T14:07:01+00:00\",\"dateModified\":\"2024-11-26T08:04:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24169\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/24169\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/24169\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615\"}]},{\"@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":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \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\/24169\/","og_locale":"ko_KR","og_type":"article","og_title":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0\uc11c \uc790\ub8cc\ud615(Data Types)\uc740 \uac01 \ub370\uc774\ud130\uac00 \uc5b4\ub5a4 \uc885\ub958\uc758 \uac12\uc778\uc9c0 \uc54c\ub824\uc8fc\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc740 \ub2e4\uc591\ud55c \ub0b4\uc7a5 \uc790\ub8cc\ud615\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub97c \uc774\ud574\ud558\uace0 \uc62c\ubc14\ub974\uac8c \uc0ac\uc6a9\ud558\ub294 \uac83\uc740 \ud6a8\uc728\uc801\uc774\uace0 \uc624\ub958 \uc5c6\ub294 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\ub294 \ub370 \uc788\uc5b4 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ubc0f \uadf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc2ec\ub3c4 \uc788\uac8c \ud0d0\uad6c\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758 \uc8fc\uc694 \uc790\ub8cc\ud615 \ud30c\uc774\uc36c\uc758 \uc790\ub8cc\ud615\uc740 \ud06c\uac8c \ubd88\ub9b0\ud615(bool), \uc815\uc218\ud615(int), \ubd80\ub3d9\uc18c\uc218\uc810\ud615(float), \ubcf5\uc18c\uc218\ud615(complex), \ubb38\uc790\ud615(str), \ub9ac\uc2a4\ud2b8\ud615(list), \ud29c\ud50c\ud615(tuple), &hellip; \ub354 \ubcf4\uae30 \"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615\"","og_url":"https:\/\/atmokpo.com\/w\/24169\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-25T14:07:01+00:00","article_modified_time":"2024-11-26T08:04:03+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\/24169\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/24169\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615","datePublished":"2024-10-25T14:07:01+00:00","dateModified":"2024-11-26T08:04:03+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/24169\/"},"wordCount":10,"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\/24169\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/24169\/","url":"https:\/\/atmokpo.com\/w\/24169\/","name":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 - \uc790\ub8cc\ud615 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-25T14:07:01+00:00","dateModified":"2024-11-26T08:04:03+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/24169\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/24169\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/24169\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"02\uc7a5: \ud30c\uc774\uc36c \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08 &#8211; \uc790\ub8cc\ud615"}]},{"@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":24169,"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":24169,"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":43477,"url":"https:\/\/atmokpo.com\/w\/43477\/","url_meta":{"origin":24169,"position":2},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  005. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \ubcc0\uc218 \ubc0f \ub370\uc774\ud130 \ud0c0\uc785","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"1. Dart \uc5b8\uc5b4 \uc18c\uac1c Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \ud604\ub300\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ubc0f \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ud2b9\ud788 Flutter \ud504\ub808\uc784\uc6cc\ud06c\uc640 \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc758 \uc778\uae30 \uc5b8\uc5b4\ub85c \uc790\ub9ac \uc7a1\uace0 \uc788\uc2b5\ub2c8\ub2e4. Dart\uc758 \ubb38\ubc95\uc740 Java\uc640 C#\uc5d0\uc11c \uc601\ud5a5\uc744 \ubc1b\uc558\uc73c\uba70, \uc774\ub97c \ud1b5\ud574 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc27d\uac8c \uc811\uadfc\ud560 \uc218 \uc788\ub294 \uce5c\uc219\ud55c \uc5b8\uc5b4\uc785\ub2c8\ub2e4. Dart\ub294 \uac1d\uccb4 \uc9c0\ud5a5\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":25112,"url":"https:\/\/atmokpo.com\/w\/25112\/","url_meta":{"origin":24169,"position":3},"title":"\uc720\ub2c8\ud2f0 \uae30\ucd08 \uac15\uc88c: C# \ucef4\ud4e8\ud130\uc640 \uccab\uc778\uc0ac","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\ucd5c\uc2e0 \uac8c\uc784 \uac1c\ubc1c \ud658\uacbd\uc5d0\uc11c \uc720\ub2c8\ud2f0\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uac8c\uc784 \uc5d4\uc9c4 \uc911 \ud558\ub098\ub85c, \uac15\ub825\ud55c \uae30\ub2a5\uacfc \uc720\uc5f0\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \uc720\ub2c8\ud2f0\uc758 \uae30\ucd08\ubd80\ud130 \uc2dc\uc791\ud558\uc5ec C#\uc744 \uc0ac\uc6a9\ud574 \ucef4\ud4e8\ud130\uc640 \uccab \uc778\uc0ac\ub97c \ub098\ub204\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc0c1\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc720\ub2c8\ud2f0\ub780 \ubb34\uc5c7\uc778\uac00? \uc720\ub2c8\ud2f0(Unreal Engine)\ub294 \uadf8\ub798\ud53d\uc2a4, \ubb3c\ub9ac\ud559, \uc778\uacf5\uc9c0\ub2a5 \ub4f1\uc758 \uae30\ub2a5\uc744 \uac16\ucd98 3D \ubc0f 2D \uac8c\uc784\u2026","rel":"","context":"&quot;\uc720\ub2c8\ud2f0\uae30\ucd08&quot;\uc5d0\uc11c","block_context":{"text":"\uc720\ub2c8\ud2f0\uae30\ucd08","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9c%a0%eb%8b%88%ed%8b%b0%ea%b8%b0%ec%b4%88\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":26986,"url":"https:\/\/atmokpo.com\/w\/26986\/","url_meta":{"origin":24169,"position":4},"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":24169,"position":5},"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":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24169","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=24169"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24169\/revisions"}],"predecessor-version":[{"id":38147,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24169\/revisions\/38147"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=24169"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=24169"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=24169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}