{"id":24203,"date":"2024-10-25T14:13:09","date_gmt":"2024-10-25T14:13:09","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=24203"},"modified":"2024-11-26T08:03:56","modified_gmt":"2024-11-26T08:03:56","slug":"05%ec%9e%a5-%ed%8c%8c%ec%9d%b4%ec%8d%ac-%eb%82%a0%ea%b0%9c-%eb%8b%ac%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/24203\/","title":{"rendered":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\uc18c\uac1c<\/h2>\n\n\n\n<p>\uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc744 \ub118\uc5b4 \uc0dd\uc0b0\uc131\uc744 \uadf9\ub300\ud654\ud558\uace0 \ub354\uc6b1 \ud6a8\uc728\uc801\uc778 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\uae30 \uc704\ud55c \uace0\uae09 \uc8fc\uc81c\ub4e4\uc744 \ub2e4\ub8f9\ub2c8\ub2e4. \uc774 \uc7a5\uc744 \ud1b5\ud574 \uc791\uc131\ud55c \ucf54\ub4dc\ub294 \ubcf4\ub2e4 \uacac\uace0\ud558\uace0 \ud655\uc7a5 \uac00\ub2a5\ud558\uba70 \uc720\uc9c0 \ubcf4\uc218\uac00 \uc26c\uc6cc\uc9c8 \uac83\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800 (Context Managers)<\/h2>\n\n\n\n<p>\ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\ub294 \ud30c\uc77c \uc5f4\uae30, \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc5f0\uacb0, \ub77d \uc0ac\uc6a9 \ub4f1\uc5d0\uc11c \uc790\uc6d0 \ud560\ub2f9\uacfc \ud574\uc81c\ub97c \uc790\ub3d9\ud654\ud558\ub294 \ud30c\uc774\uc36c \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uc744 \ub192\uc774\uace0, \ubc84\uadf8 \ubc1c\uc0dd \uac00\ub2a5\uc131\uc744 \uc904\uc5ec\uc90d\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1.1 \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n\n\n\n<p>\ud30c\uc774\uc36c\uc5d0\uc11c \uac00\uc7a5 \ud754\ud55c \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\uc758 \uc608\ub294&nbsp;<code>with<\/code>&nbsp;\uad6c\ubb38\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud30c\uc77c\uc744 \uc5ec\ub294 \uac83\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>with open('example.txt', 'r') as file:\n    data = file.read()\n    # file\uc740 \ube14\ub85d\uc774 \uc885\ub8cc\ub418\uba74\uc11c \uc790\ub3d9\uc73c\ub85c \ub2eb\ud799\ub2c8\ub2e4.<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">1.2 \uc0ac\uc6a9\uc790 \uc815\uc758 \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800<\/h3>\n\n\n\n<p>\ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\ub97c \uc9c1\uc811 \uad6c\ud604\ud558\ub824\uba74&nbsp;<code>__enter__<\/code>\uc640&nbsp;<code>__exit__<\/code>&nbsp;\uba54\uc18c\ub4dc\ub97c \uac00\uc9c4 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud558\uba74 \ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class CustomContext:\n    def __enter__(self):\n        # \uc790\uc6d0 \ud560\ub2f9 \ud639\uc740 \uc124\uc815\n        print(\"\uc790\uc6d0 \ud560\ub2f9\")\n        return self\n    \n    def __exit__(self, exc_type, exc_val, exc_tb):\n        # \uc790\uc6d0 \ud574\uc81c\n        print(\"\uc790\uc6d0 \ud574\uc81c\")\n\nwith CustomContext() as context:\n    print(\"\ube14\ub85d \ub0b4\ubd80\")<\/code><\/pre>\n\n\n\n<p>\uc774 \uc608\uc81c\uc5d0\uc11c\ub294 \ube14\ub85d\uc758 \uc2dc\uc791\uacfc \ub05d\uc744 \uc54c\uc544\ucc44\uace0 \uc790\uc6d0\uc744 \uad00\ub9ac\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. \uc81c\ub108\ub808\uc774\ud130 (Generators)<\/h2>\n\n\n\n<p>\uc81c\ub108\ub808\uc774\ud130\ub294 \uc774\ud130\ub808\uc774\ud130\ub97c \uac04\ub2e8\ud558\uac8c \ub9cc\ub4e0 \uac83\uc774\uba70 \ud070 \ub370\uc774\ud130 \uc138\ud2b8\ub97c \ucc98\ub9ac\ud560 \ub54c \uba54\ubaa8\ub9ac\ub97c \uc808\uc57d\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc81c\ub108\ub808\uc774\ud130\ub294 \uac12\uc744 \ud55c \ubc88\uc5d0 \ud558\ub098\uc529 \ubc18\ud658\ud558\uc5ec \ub2e4\uc74c \uac12\uc744 \ud544\uc694\ub85c \ud560 \ub54c\uae4c\uc9c0 \ub300\uae30\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud2b9\uc131\uc744 \ud1b5\ud574 \uc81c\ub108\ub808\uc774\ud130\ub294 \ud070 \ub370\uc774\ud130 \uc138\ud2b8\ub97c \ud6a8\uc728\uc801\uc73c\ub85c \ucc98\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2.1 \uc81c\ub108\ub808\uc774\ud130 \ud568\uc218<\/h3>\n\n\n\n<p>\uc81c\ub108\ub808\uc774\ud130 \ud568\uc218\ub294 \uc77c\ubc18 \ud568\uc218\ucc98\ub7fc \uc815\uc758\ub418\uc9c0\ub9cc \uac12\uc744 \ubc18\ud658\ud560 \ub54c&nbsp;<code>return<\/code>&nbsp;\ub300\uc2e0&nbsp;<code>yield<\/code>\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def simple_generator():\n    yield 1\n    yield 2\n    yield 3<\/code><\/pre>\n\n\n\n<p>\uc704 \ud568\uc218\ub294 \ud638\ucd9c\ub420 \ub54c\ub9c8\ub2e4 \ucc28\ub840\ub85c 1, 2, 3\uc744 \ubc18\ud658\ud558\ub294 \uc81c\ub108\ub808\uc774\ud130 \uac1d\uccb4\ub97c \ub9cc\ub4ed\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2.2 \ubb34\ud55c \uc81c\ub108\ub808\uc774\ud130<\/h3>\n\n\n\n<p>\uc81c\ub108\ub808\uc774\ud130\ub294 \ubb34\ud55c \ub8e8\ud504\ub97c \uc27d\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc5b4 \uc8fc\uae30\uc801\uc73c\ub85c \ubc18\ubcf5\ub418\ub294 \ud504\ub85c\uc138\uc2a4\ub97c \ucc98\ub9ac\ud560 \ub54c \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def infinite_sequence():\n    num = 0\n    while True:\n        yield num\n        num += 1<\/code><\/pre>\n\n\n\n<p>\uc774 \ud568\uc218\ub294 \uc911\uc9c0\ub418\uc9c0 \uc54a\ub294 \ud55c \ubb34\ud55c\ud558\uac8c 0\ubd80\ud130 \uc2dc\uc791\ud558\uc5ec \uc99d\uac00\ud558\ub294 \uc218\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. \ub370\ucf54\ub808\uc774\ud130 (Decorators)<\/h2>\n\n\n\n<p>\ub370\ucf54\ub808\uc774\ud130\ub294 \ud568\uc218\ub098 \uba54\uc18c\ub4dc\uc758 \ub3d9\uc791\uc744 \ub3d9\uc801\uc73c\ub85c \ubcc0\uacbd\ud558\uac70\ub098 \ud655\uc7a5\ud560 \uc218 \uc788\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc \uc7ac\uc0ac\uc6a9\uc131\uc744 \ud06c\uac8c \ub192\uc5ec\uc8fc\uba70, \uc8fc\ub85c \ub85c\uae45, \uc811\uadfc \uc81c\uc5b4, \uacc4\uce21 \ub4f1\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3.1 \ub370\ucf54\ub808\uc774\ud130\uc758 \uc815\uc758 \ubc0f \uc0ac\uc6a9<\/h3>\n\n\n\n<p>\ub370\ucf54\ub808\uc774\ud130\ub294 \ub610 \ub2e4\ub978 \ud568\uc218\ub85c \uac10\uc2f8\uc11c \ud2b9\uc815 \ub85c\uc9c1\uc744 \ucd94\uac00\ud558\uac70\ub098 \uae30\uc874 \ud568\uc218\uc758 \uc785\ub825\uacfc \ucd9c\ub825\uc744 \uc218\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def my_decorator(func):\n    def wrapper():\n        print(\"\ud568\uc218 \ud638\ucd9c \uc804\")\n        func()\n        print(\"\ud568\uc218 \ud638\ucd9c \ud6c4\")\n    return wrapper\n\n@my_decorator\ndef say_hello():\n    print(\"\uc548\ub155\ud558\uc138\uc694!\")\n\nsay_hello()<\/code><\/pre>\n\n\n\n<p>\uc774 \uc608\uc81c\uc5d0\uc11c&nbsp;<code>say_hello<\/code>&nbsp;\ud568\uc218\uac00 \ud638\ucd9c\ub420 \ub54c \ub370\ucf54\ub808\uc774\ud130\uac00 \ucd94\uac00\ud55c \uae30\ub2a5\uc774 \ud568\uaed8 \uc2e4\ud589\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3.2 \uc5ec\ub7ec \ub370\ucf54\ub808\uc774\ud130 \uacb0\ud569<\/h3>\n\n\n\n<p>\uc5ec\ub7ec \ub370\ucf54\ub808\uc774\ud130\ub97c \ud558\ub098\uc758 \ud568\uc218\uc5d0 \uc801\uc6a9\ud560 \uc218 \uc788\uc73c\uba70, \uc774\ub294 \ub370\ucf54\ub808\uc774\ud130\uc758 \uc21c\uc11c\uc5d0 \ub530\ub77c \ub2e4\ub974\uac8c \ub3d9\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def decorator_one(func):\n    def wrapper():\n        print(\"\ub370\ucf54\ub808\uc774\ud130 1 \uc801\uc6a9\")\n        func()\n    return wrapper\n\ndef decorator_two(func):\n    def wrapper():\n        print(\"\ub370\ucf54\ub808\uc774\ud130 2 \uc801\uc6a9\")\n        func()\n    return wrapper\n\n@decorator_two\n@decorator_one\ndef display():\n    print(\"\uc804\uc2dc \ud568\uc218\")\n\ndisplay()<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. \ubcd1\ub82c \ucc98\ub9ac \ubc0f \uba40\ud2f0\uc2a4\ub808\ub529 (Parallelism and Multithreading)<\/h2>\n\n\n\n<p>\ud504\ub85c\uadf8\ub7a8 \uc131\ub2a5\uc744 \ub192\uc774\uae30 \uc704\ud574 \ubcd1\ub82c \ub610\ub294 \uba40\ud2f0\uc2a4\ub808\ub529\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uac00 \uc5ec\ub7ec CPU \ucf54\uc5b4\ub97c \ud65c\uc6a9\ud558\uc5ec \uc791\uc5c5\uc744 \ub3d9\uc2dc\uc5d0 \uc218\ud589\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4.1 \uba40\ud2f0\uc2a4\ub808\ub529<\/h3>\n\n\n\n<p>\uba40\ud2f0\uc2a4\ub808\ub529\uc740 I\/O bound \uc791\uc5c5\uc774 \ub9ce\uc740 \uacbd\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc758&nbsp;<code>threading<\/code>&nbsp;\ubaa8\ub4c8\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ub808\ub4dc\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import threading\nimport time\n\ndef thread_function(name):\n    print(f\"\uc2a4\ub808\ub4dc {name} \uc2dc\uc791\")\n    time.sleep(2)\n    print(f\"\uc2a4\ub808\ub4dc {name} \uc885\ub8cc\")\n\nthreads = &#91;]\nfor i in range(3):\n    thread = threading.Thread(target=thread_function, args=(i,))\n    threads.append(thread)\n    thread.start()\n\nfor thread in threads:\n    thread.join()<\/code><\/pre>\n\n\n\n<p>\uc774 \ucf54\ub4dc\ub294 3\uac1c\uc758 \uc2a4\ub808\ub4dc\ub97c \ub9cc\ub4e4\uc5b4 \uac01\uac01 2\ucd08\uac04 \uc791\uc5c5\uc744 \uc218\ud589\ud558\uac8c \ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4.2 \uba40\ud2f0\ud504\ub85c\uc138\uc2f1<\/h3>\n\n\n\n<p>CPU bound \uc791\uc5c5\uc758 \uacbd\uc6b0&nbsp;<code>multiprocessing<\/code>&nbsp;\ubaa8\ub4c8\uc774 \ub354 \ud6a8\uc728\uc801\uc785\ub2c8\ub2e4. \uc774\ub294 \ud504\ub85c\uc138\uc2a4\ub97c \ub9cc\ub4e4\uc5b4 CPU \ucf54\uc5b4\ub97c \ucd5c\ub300\ud55c \ud65c\uc6a9\ud560 \uc218 \uc788\uac8c \ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from multiprocessing import Process\n\ndef process_function(name):\n    print(f\"\ud504\ub85c\uc138\uc2a4 {name} \uc2dc\uc791\")\n    time.sleep(2)\n    print(f\"\ud504\ub85c\uc138\uc2a4 {name} \uc885\ub8cc\")\n\nprocesses = &#91;]\nfor i in range(3):\n    process = Process(target=process_function, args=(i,))\n    processes.append(process)\n    process.start()\n\nfor process in processes:\n    process.join()<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. \uc608\uc678 \ucc98\ub9ac \uace0\uae09 (Advanced Exception Handling)<\/h2>\n\n\n\n<p>\uc608\uc678 \ucc98\ub9ac\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc2e0\ub8b0\uc131\uc744 \ub192\uc774\ub294 \ub370 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc5ec\uae30\uc11c\ub294 \uace0\uae09 \uc608\uc678 \ucc98\ub9ac \uae30\ubc95\uc744 \uc0b4\ud3b4\ubd05\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5.1 \ucee4\uc2a4\ud140 \uc608\uc678 \uc0dd\uc131<\/h3>\n\n\n\n<p>\uc0ac\uc6a9\uc790 \uc815\uc758 \uc608\uc678\ub97c \ub9cc\ub4e4\uc5b4 \ud2b9\uc815 \uc0c1\ud669\uc5d0\uc11c \ubc1c\uc0dd\ud560 \uc608\uc678\ub97c \uba85\uc2dc\uc801\uc73c\ub85c \ud45c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class CustomError(Exception):\n    pass\n\ntry:\n    raise CustomError(\"\uc774\uac83\uc740 \uc0ac\uc6a9\uc790 \uc815\uc758 \uc608\uc678\uc785\ub2c8\ub2e4\")\nexcept CustomError as e:\n    print(e)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5.2 \uc608\uc678 \uccb4\uc774\ub2dd<\/h3>\n\n\n\n<p>\ud558\ub098\uc758 \uc608\uc678\uac00 \ub2e4\ub978 \uc608\uc678\uc758 \uacb0\uacfc\uc77c \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc5d0\uc11c\ub294&nbsp;<code>raise ... from ...<\/code>&nbsp;\ubb38\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc608\uc678 \uccb4\uc778\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>try:\n    raise ValueError(\"\uccab \ubc88\uc9f8 \uc608\uc678\")\nexcept ValueError as ve:\n    raise KeyError(\"\ub450 \ubc88\uc9f8 \uc608\uc678\") from ve<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6. \uacb0\ub860<\/h2>\n\n\n\n<p>\uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uace0\uae09 \uae30\ub2a5\uc744 \ubcf4\ub2e4 \uae4a\uc774 \uc788\uac8c \ud0d0\uad6c\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uae30\uc220\uc744 \ud65c\uc6a9\ud558\uba74 \ub354\uc6b1 \uacac\uace0\ud558\uace0 \ud655\uc7a5 \uac00\ub2a5\ud55c \ucf54\ub4dc\ub97c \uc791\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c \uc7a5\uc5d0\uc11c\ub294 \ub370\uc774\ud130 \ubd84\uc11d\uc5d0\uc11c \ud30c\uc774\uc36c\uc744 \uc774\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc18c\uac1c \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc744 \ub118\uc5b4 \uc0dd\uc0b0\uc131\uc744 \uadf9\ub300\ud654\ud558\uace0 \ub354\uc6b1 \ud6a8\uc728\uc801\uc778 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\uae30 \uc704\ud55c \uace0\uae09 \uc8fc\uc81c\ub4e4\uc744 \ub2e4\ub8f9\ub2c8\ub2e4. \uc774 \uc7a5\uc744 \ud1b5\ud574 \uc791\uc131\ud55c \ucf54\ub4dc\ub294 \ubcf4\ub2e4 \uacac\uace0\ud558\uace0 \ud655\uc7a5 \uac00\ub2a5\ud558\uba70 \uc720\uc9c0 \ubcf4\uc218\uac00 \uc26c\uc6cc\uc9c8 \uac83\uc785\ub2c8\ub2e4. 1. \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800 (Context Managers) \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\ub294 \ud30c\uc77c \uc5f4\uae30, \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc5f0\uacb0, \ub77d \uc0ac\uc6a9 \ub4f1\uc5d0\uc11c \uc790\uc6d0 \ud560\ub2f9\uacfc \ud574\uc81c\ub97c \uc790\ub3d9\ud654\ud558\ub294 \ud30c\uc774\uc36c \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uc744 \ub192\uc774\uace0, \ubc84\uadf8 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/24203\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30&#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-24203","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>05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \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\/24203\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc18c\uac1c \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc744 \ub118\uc5b4 \uc0dd\uc0b0\uc131\uc744 \uadf9\ub300\ud654\ud558\uace0 \ub354\uc6b1 \ud6a8\uc728\uc801\uc778 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\uae30 \uc704\ud55c \uace0\uae09 \uc8fc\uc81c\ub4e4\uc744 \ub2e4\ub8f9\ub2c8\ub2e4. \uc774 \uc7a5\uc744 \ud1b5\ud574 \uc791\uc131\ud55c \ucf54\ub4dc\ub294 \ubcf4\ub2e4 \uacac\uace0\ud558\uace0 \ud655\uc7a5 \uac00\ub2a5\ud558\uba70 \uc720\uc9c0 \ubcf4\uc218\uac00 \uc26c\uc6cc\uc9c8 \uac83\uc785\ub2c8\ub2e4. 1. \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800 (Context Managers) \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\ub294 \ud30c\uc77c \uc5f4\uae30, \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc5f0\uacb0, \ub77d \uc0ac\uc6a9 \ub4f1\uc5d0\uc11c \uc790\uc6d0 \ud560\ub2f9\uacfc \ud574\uc81c\ub97c \uc790\ub3d9\ud654\ud558\ub294 \ud30c\uc774\uc36c \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uc744 \ub192\uc774\uace0, \ubc84\uadf8 &hellip; \ub354 \ubcf4\uae30 &quot;05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/24203\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-25T14:13:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:03:56+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\/24203\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24203\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30\",\"datePublished\":\"2024-10-25T14:13:09+00:00\",\"dateModified\":\"2024-11-26T08:03:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24203\/\"},\"wordCount\":33,\"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\/24203\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/24203\/\",\"url\":\"https:\/\/atmokpo.com\/w\/24203\/\",\"name\":\"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-25T14:13:09+00:00\",\"dateModified\":\"2024-11-26T08:03:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/24203\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/24203\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/24203\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30\"}]},{\"@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":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \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\/24203\/","og_locale":"ko_KR","og_type":"article","og_title":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc18c\uac1c \uc774\ubc88 \uc7a5\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc744 \ub118\uc5b4 \uc0dd\uc0b0\uc131\uc744 \uadf9\ub300\ud654\ud558\uace0 \ub354\uc6b1 \ud6a8\uc728\uc801\uc778 \ucf54\ub4dc\ub97c \uc791\uc131\ud558\uae30 \uc704\ud55c \uace0\uae09 \uc8fc\uc81c\ub4e4\uc744 \ub2e4\ub8f9\ub2c8\ub2e4. \uc774 \uc7a5\uc744 \ud1b5\ud574 \uc791\uc131\ud55c \ucf54\ub4dc\ub294 \ubcf4\ub2e4 \uacac\uace0\ud558\uace0 \ud655\uc7a5 \uac00\ub2a5\ud558\uba70 \uc720\uc9c0 \ubcf4\uc218\uac00 \uc26c\uc6cc\uc9c8 \uac83\uc785\ub2c8\ub2e4. 1. \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800 (Context Managers) \ucee8\ud14d\uc2a4\ud2b8 \ub9e4\ub2c8\uc800\ub294 \ud30c\uc77c \uc5f4\uae30, \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc5f0\uacb0, \ub77d \uc0ac\uc6a9 \ub4f1\uc5d0\uc11c \uc790\uc6d0 \ud560\ub2f9\uacfc \ud574\uc81c\ub97c \uc790\ub3d9\ud654\ud558\ub294 \ud30c\uc774\uc36c \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uc758 \uac00\ub3c5\uc131\uc744 \ub192\uc774\uace0, \ubc84\uadf8 &hellip; \ub354 \ubcf4\uae30 \"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/24203\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-25T14:13:09+00:00","article_modified_time":"2024-11-26T08:03:56+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\/24203\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/24203\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30","datePublished":"2024-10-25T14:13:09+00:00","dateModified":"2024-11-26T08:03:56+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/24203\/"},"wordCount":33,"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\/24203\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/24203\/","url":"https:\/\/atmokpo.com\/w\/24203\/","name":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-25T14:13:09+00:00","dateModified":"2024-11-26T08:03:56+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/24203\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/24203\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/24203\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"05\uc7a5: \ud30c\uc774\uc36c \ub0a0\uac1c \ub2ec\uae30"}]},{"@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":38622,"url":"https:\/\/atmokpo.com\/w\/38622\/","url_meta":{"origin":24203,"position":0},"title":"DJango \uc11c\ubc84\uac1c\ubc1c, Django \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc758 \uae30\ubcf8 \uc6d0\ub9ac","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub978 \uac1c\ubc1c\uacfc \uc2ec\ud50c\ud55c \ub514\uc790\uc778\uc744 \ud2b9\uc9d5\uc73c\ub85c \ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\uc758 \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc740 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ud504\ub860\ud2b8\uc5d4\ub4dc\ub97c \uad6c\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ub370\uc774\ud130 \ud45c\ud604\uc744 \uc704\ud55c HTML\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4. \ud15c\ud50c\ub9bf\uc740 \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \ubcf4\uc5ec\uc904 \ub0b4\uc6a9\uc744 \uc815\uc758\ud558\uba70, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\uace0 HTML\uacfc \ud30c\uc774\uc36c \ucf54\ub4dc\ub97c \ubd84\ub9ac\ud558\ub294 \ub370 \ub3c4\uc6c0\uc744 \uc90d\ub2c8\ub2e4. 1. Django \ud15c\ud50c\ub9bf\u2026","rel":"","context":"&quot;DJango\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"DJango\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/django%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":31145,"url":"https:\/\/atmokpo.com\/w\/31145\/","url_meta":{"origin":24203,"position":1},"title":"UWP \uac1c\ubc1c, \uc694\uc18c\uc640 \uc694\uc18c \uac04 \ub370\uc774\ud130 \ubc14\uc778\ub529","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc720\ub2c8\ubc84\uc124 \uc708\ub3c4\uc6b0 \ud50c\ub7ab\ud3fc(UWP) \uac1c\ubc1c\uc740 \ud604\ub300\uc801\uc778 \uc571 \uac1c\ubc1c\uc744 \uc704\ud55c \ud6cc\ub96d\ud55c \uc120\ud0dd\uc9c0\uc785\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uae30\uae30\uc5d0\uc11c \uc571\uc744 \uc2e4\ud589\ud560 \uc218 \uc788\ub294 \uac00\ub2a5\uc131\uacfc \uc9c1\uad00\uc801\uc778 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI)\uc5d0 \ub300\ud55c \ub192\uc740 \uc801\uc751\uc131 \ub355\ubd84\uc5d0 UWP\ub294 \ub9ce\uc740 \uac1c\ubc1c\uc790\uc5d0\uac8c \uafb8\uc900\ud788 \uc778\uae30\ub97c \uc5bb\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 \ub370\uc774\ud130 \ubc14\uc778\ub529\uc740 UWP \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac15\ub825\ud55c \uae30\ub2a5 \uc911 \ud558\ub098\ub85c, UI \uc694\uc18c\uc640 \ub370\uc774\ud130 \uc18c\uc2a4\ub97c \ub3d9\uae30\ud654\ud558\uc5ec \ub354\uc6b1 \ud6a8\uc728\uc801\uc73c\ub85c \uc571\uc744 \uad6c\ucd95\ud560 \uc218\u2026","rel":"","context":"&quot;UWP \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"UWP \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/uwp-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25144,"url":"https:\/\/atmokpo.com\/w\/25144\/","url_meta":{"origin":24203,"position":2},"title":"\uc720\ub2c8\ud2f0 \uae30\ucd08 \uac15\uc88c: \uc0ac\uc6b4\ub4dc \ubc0f \uc52c \uc804\ud658 \uc2dc \uc911\ubcf5 \ubc29\uc9c0","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\uc791\uc131\uc77c: 2023\ub144 10\uc6d4 10\uc77c \uc791\uc131\uc790: \uc870\uad11\ud615 1. \uc720\ub2c8\ud2f0\ub780 \ubb34\uc5c7\uc778\uac00? \uc720\ub2c8\ud2f0(Unity)\ub294 2D \ubc0f 3D \uac8c\uc784 \uac1c\ubc1c\uc744 \uc704\ud55c \uac15\ub825\ud55c \uac8c\uc784 \uc5d4\uc9c4\uc785\ub2c8\ub2e4. \uc720\ub2c8\ud2f0\ub294 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ub300\ud55c \ubc30\ud3ec\ub97c \uc9c0\uc6d0\ud558\uba70, \uc9c1\uad00\uc801\uc778 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc640 \uac15\ub825\ud55c \ucee4\ubba4\ub2c8\ud2f0 \uc9c0\uc6d0\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uac1c\ubc1c\uc790\ub4e4\uc740 \uc720\ub2c8\ud2f0\ub97c \uc774\uc6a9\ud558\uc5ec \uc0c1\uc0c1\ud558\ub294 \uac70\uc758 \ubaa8\ub4e0 \uc885\ub958\uc758 \uac8c\uc784 \ubc0f \uc778\ud130\ub799\ud2f0\ube0c \ucf58\ud150\uce20\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 2. \uc0ac\uc6b4\ub4dc\uc758 \uc911\uc694\uc131 \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":43344,"url":"https:\/\/atmokpo.com\/w\/43344\/","url_meta":{"origin":24203,"position":3},"title":"[Electron]  003. Electron \ud658\uacbd \uc124\uc815\ud558\uae30, \uac1c\ubc1c \ud658\uacbd \uad6c\ucd95 \ubc29\ubc95 (Node.js, npm \ub4f1)","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"Electron\uc740 \uc6f9 \uae30\uc220\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 Open Source \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Electron\uc744 \ud65c\uc6a9\ud558\uba74 HTML, CSS, JavaScript\ub97c \uc0ac\uc6a9\ud558\uc5ec Windows, macOS, Linux\uc6a9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Electron \uac1c\ubc1c\uc744 \uc704\ud55c \ud658\uacbd \uc124\uc815 \ubc29\ubc95\uacfc \ud544\uc694\ud55c \ub3c4\uad6c\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Electron \uac1c\uc694 Electron\uc740 GitHub\uc5d0\uc11c \uac1c\ubc1c\ud55c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, Chromium\uacfc Node.js\ub97c \uae30\ubc18\uc73c\ub85c\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24143,"url":"https:\/\/atmokpo.com\/w\/24143\/","url_meta":{"origin":24203,"position":4},"title":"01-4 \ud30c\uc774\uc36c \uc124\uce58\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 25\uc77c","format":false,"excerpt":"01-4 \ud30c\uc774\uc36c \uc124\uce58\ud558\uae30 \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Windows, macOS, \uadf8\ub9ac\uace0 Linux \uc6b4\uc601 \uccb4\uc81c\uc5d0 \ud30c\uc774\uc36c\uc744 \uc124\uce58\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ud30c\uc774\uc36c\uc774\ub780? \ud30c\uc774\uc36c\uc740 Guido van Rossum\uc5d0 \uc758\ud574 \ub9cc\ub4e4\uc5b4\uc9c4 \uace0\uae09 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \ub2e4\uc591\ud55c \ud504\ub85c\uadf8\ub798\ubc0d \uc2a4\ud0c0\uc77c\uacfc \ucca0\ud559\uc744 \uc9c0\uc6d0\ud558\uba70, \uba85\ud655\ud558\uace0 \uac04\uacb0\ud55c \ubb38\ubc95\uc744 \uac00\uc9c0\uace0 \uc788\uc5b4 \ucd08\ubcf4\uc790\ub4e4\uc5d0\uac8c\ub3c4 \uc801\ud569\ud569\ub2c8\ub2e4. \ud30c\uc774\uc36c \uc124\uce58 \uc900\ube44 \ud30c\uc774\uc36c\uc744 \uc124\uce58\ud558\uae30 \uc804\uc5d0 Python \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc758 \ucd5c\uc2e0 \ubc84\uc804\uc744 \ub2e4\uc6b4\ub85c\ub4dc\ud560\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c\uacf5\ubd80&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c\uacf5\ubd80","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac%ea%b3%b5%eb%b6%80\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":27154,"url":"https:\/\/atmokpo.com\/w\/27154\/","url_meta":{"origin":24203,"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\/24203","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=24203"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24203\/revisions"}],"predecessor-version":[{"id":24204,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/24203\/revisions\/24204"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=24203"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=24203"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=24203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}