{"id":2457,"date":"2023-07-22T04:29:06","date_gmt":"2023-07-22T04:29:06","guid":{"rendered":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/"},"modified":"2023-07-22T04:29:06","modified_gmt":"2023-07-22T04:29:06","slug":"python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/","title":{"rendered":"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95: \uc608\uc81c \ud3ec\ud568"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>\uc774\ubcc0\ub7c9 \ubd84\uc11d\uc774\ub77c\ub294<\/strong> \uc6a9\uc5b4\ub294 \ub450 \ubcc0\uc218\uc5d0 \ub300\ud55c \ubd84\uc11d\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uc811\ub450\uc0ac &#8220;bi&#8221;\uac00 &#8220;\ub458&#8221;\uc744 \uc758\ubbf8\ud558\uae30 \ub54c\ubb38\uc5d0 \uc774\uac83\uc744 \uae30\uc5b5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774\ubcc0\ub7c9 \ubd84\uc11d\uc758 \ubaa9\ud45c\ub294 \ub450 \ubcc0\uc218 \uac04\uc758 \uad00\uacc4\ub97c \uc774\ud574\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \uc138 \uac00\uc9c0 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong> \uc0c1\uad00\uacc4\uc218<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>3.<\/strong> \ub2e8\uc21c \uc120\ud615 \ud68c\uadc0<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \ub450 \uac00\uc9c0 \ubcc0\uc218( <strong>(1)<\/strong> \uacf5\ubd80\uc5d0 \uc18c\ube44\ud55c \uc2dc\uac04 \ubc0f <strong>(2)<\/strong> 20\uba85\uc758 \ud559\uc0dd\uc774 \uc5bb\uc740 \uc2dc\ud5d8 \uc810\uc218)\uc5d0 \ub300\ud55c \uc815\ubcf4\uac00 \ud3ec\ud568\ub41c \ub2e4\uc74c pandas DataFrame\uc744 \uc0ac\uc6a9\ud558\uc5ec Python\uc5d0\uc11c \uc774\ub7ec\ud55c \uac01 \uc720\ud615\uc758 \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#createDataFrame<\/span>\ndf = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">hours<\/span> ': [1, 1, 1, 2, 2, 2, 3, 3, 3, 3,\n                             3, 4, 4, 5, 5, 6, 6, 6, 7, 8],\n                   ' <span style=\"color: #ff0000;\">score<\/span> ': [75, 66, 68, 74, 78, 72, 85, 82, 90, 82,\n                             80, 88, 85, 90, 92, 94, 94, 88, 91, 96]})\n\n<span style=\"color: #008080;\">#view first five rows of DataFrame\n<\/span>df. <span style=\"color: #3366ff;\">head<\/span> ()\n\n\thours score\n0 1 75\n1 1 66\n2 1 68\n3 2 74\n4 2 78<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>1. \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uad6c\ubb38\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacf5\ubd80\ud55c \uc2dc\uac04\uacfc \uc2dc\ud5d8 \uacb0\uacfc\uc758 \uc0b0\uc810\ub3c4\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #008000;\"><span style=\"color: #3366ff;\">pyplot<\/span> as<\/span> plt\n\n<span style=\"color: #008080;\">#create scatterplot of hours vs. score<\/span>\nplt. <span style=\"color: #3366ff;\">scatter<\/span> (df. <span style=\"color: #3366ff;\">hours<\/span> , df. <span style=\"color: #3366ff;\">score<\/span> )\nplt. <span style=\"color: #3366ff;\">title<\/span> (' <span style=\"color: #ff0000;\">Hours Studied vs. Exam Score<\/span> ')\nplt. <span style=\"color: #3366ff;\">xlabel<\/span> (' <span style=\"color: #ff0000;\">Hours Studied<\/span> ')\nplt. <span style=\"color: #3366ff;\">ylabel<\/span> (' <span style=\"color: #ff0000;\">Exam Score<\/span> ')\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-22049 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/bivpython1.png\" alt=\"\" width=\"526\" height=\"365\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">x\ucd95\uc740 \uacf5\ubd80\ud55c \uc2dc\uac04\uc744 \ub098\ud0c0\ub0b4\uace0 y\ucd95\uc740 \uc2dc\ud5d8\uc5d0\uc11c \uc5bb\uc740 \uc131\uc801\uc744 \ub098\ud0c0\ub0c5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uadf8\ub798\ud504\ub294 \ub450 \ubcc0\uc218 \uc0ac\uc774\uc5d0 \uae0d\uc815\uc801\uc778 \uad00\uacc4\uac00 \uc788\uc74c\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. \ud559\uc2b5 \uc2dc\uac04\uc774 \uc99d\uac00\ud560\uc218\ub85d \uc2dc\ud5d8 \uc810\uc218\ub3c4 \uc99d\uac00\ud558\ub294 \uacbd\ud5a5\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>2. \uc0c1\uad00\uacc4\uc218<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ud53c\uc5b4\uc2a8 \uc0c1\uad00 \uacc4\uc218\ub294 \ub450 \ubcc0\uc218 \uac04\uc758 \uc120\ud615 \uad00\uacc4\ub97c \uc218\ub7c9\ud654\ud558\ub294 \ubc29\ubc95\uc785\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Pandas\uc5d0\uc11c <strong>corr()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c1\uad00 \ud589\ub82c\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create correlation matrix\n<\/span>df. <span style=\"color: #3366ff;\">corr<\/span> ()\n\n\thours score\nhours 1.000000 0.891306\nscore 0.891306 1.000000<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc0c1\uad00\uacc4\uc218\ub294 <strong>0.891<\/strong> \ub85c \ub098\ud0c0\ub0ac\ub2e4. \uc774\ub294<\/span> <span style=\"color: #000000;\">\uacf5\ubd80\ud55c \uc2dc\uac04\uacfc \uc2dc\ud5d8 \uc131\uc801 \uc0ac\uc774\uc5d0 \uac15\ud55c \uc591\uc758 \uc0c1\uad00\uad00\uacc4\uac00 \uc788\uc74c\uc744 \ub098\ud0c0\ub0c5\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>3. \ub2e8\uc21c \uc120\ud615 \ud68c\uadc0<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e8\uc21c \uc120\ud615 \ud68c\uadc0\ub294 \ub450 \ubcc0\uc218 \uac04\uc758 \uad00\uacc4\ub97c \uc218\ub7c9\ud654\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \ud1b5\uacc4 \ubc29\ubc95\uc785\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">statsmodels \ud328\ud0a4\uc9c0\uc758 <strong>OLS()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uacf5\ubd80\ud55c \uc2dc\uac04\uacfc \ubc1b\uc740 \uc2dc\ud5d8 \uacb0\uacfc\uc5d0 \ub300\ud55c <a href=\"https:\/\/statorials.org\/ko\/\u1111\u1161\u110b\u1175\u110a\u1165\u11ab\u110b\u1174-\u1100\u1161\u11ab\u1103\u1161\u11ab\u1112\u1161\u11ab-\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171\/\" target=\"_blank\" rel=\"noopener\">\uac04\ub2e8\ud55c \uc120\ud615 \ud68c\uadc0 \ubaa8\ub378\uc744<\/a> \ube60\ub974\uac8c \ub9de\ucd9c \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n\n<span style=\"color: #008080;\">#define response variable\n<\/span>y = df[' <span style=\"color: #ff0000;\">score<\/span> ']\n\n<span style=\"color: #008080;\">#define explanatory variable\n<\/span>x = df[[' <span style=\"color: #ff0000;\">hours<\/span> ']]\n\n<span style=\"color: #008080;\">#add constant to predictor variables\n<\/span>x = sm. <span style=\"color: #3366ff;\">add_constant<\/span> (x)\n\n<span style=\"color: #008080;\">#fit linear regression model\n<\/span>model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y,x). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #008080;\">#view model summary\n<\/span><span style=\"color: #008000;\">print<\/span> ( <span style=\"color: #3366ff;\">model.summary<\/span> ())\n\n                            OLS Regression Results                            \n==================================================== ============================\nDept. Variable: R-squared score: 0.794\nModel: OLS Adj. R-squared: 0.783\nMethod: Least Squares F-statistic: 69.56\nDate: Mon, 22 Nov 2021 Prob (F-statistic): 1.35e-07\nTime: 16:15:52 Log-Likelihood: -55,886\nNo. Observations: 20 AIC: 115.8\nDf Residuals: 18 BIC: 117.8\nModel: 1                                         \nCovariance Type: non-robust                                         \n==================================================== ============================\n                 coef std err t P&gt;|t| [0.025 0.975]\n-------------------------------------------------- ----------------------------\nconst 69.0734 1.965 35.149 0.000 64.945 73.202\nhours 3.8471 0.461 8.340 0.000 2.878 4.816\n==================================================== ============================\nOmnibus: 0.171 Durbin-Watson: 1.404\nProb(Omnibus): 0.918 Jarque-Bera (JB): 0.177\nSkew: 0.165 Prob(JB): 0.915\nKurtosis: 2.679 Cond. No. 9.37\n==================================================== ============================\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc801\ud569 \ud68c\uadc0 \ubc29\uc815\uc2dd\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc2dc\ud5d8 \uc810\uc218 = 69.0734 + 3.8471*(\uacf5\ubd80\ud55c \uc2dc\uac04)<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774\ub294 \uacf5\ubd80\ud55c \uc2dc\uac04\uc774 \ucd94\uac00\ub420 \ub54c\ub9c8\ub2e4 \uc2dc\ud5d8 \uc810\uc218\uac00 \ud3c9\uade0 <strong>3.8471<\/strong> \uc99d\uac00\ud558\ub294 \uac83\uacfc \uad00\ub828\uc774 \uc788\uc74c\uc744 \uc54c\ub824\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub610\ud55c \uc801\ud569 \ud68c\uadc0 \ubc29\uc815\uc2dd\uc744 \uc0ac\uc6a9\ud558\uc5ec \ucd1d \uacf5\ubd80 \uc2dc\uac04\uc744 \uae30\uc900\uc73c\ub85c \ud559\uc0dd\uc774 \ubc1b\uac8c \ub420 \uc810\uc218\ub97c \uc608\uce21\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, 3\uc2dc\uac04 \ub3d9\uc548 \uacf5\ubd80\ud55c \ud559\uc0dd\uc740 <strong>81.6147<\/strong> \uc810\uc744 \ubc1b\uc544\uc57c \ud569\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\uc2dc\ud5d8 \uc810\uc218 = 69.0734 + 3.8471*(\uacf5\ubd80\ud55c \uc2dc\uac04)<\/span><\/li>\n<li> <span style=\"color: #000000;\">\uc2dc\ud5d8 \uc810\uc218 = 69.0734 + 3.8471*(3)<\/span><\/li>\n<li> <span style=\"color: #000000;\">\uc2dc\ud5d8 \uacb0\uacfc = 81.6147<\/span><\/li>\n<\/ul>\n<h3> <span style=\"color: #000000;\"><strong>\ucd94\uac00 \ub9ac\uc18c\uc2a4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc790\uc2b5\uc11c\uc5d0\uc11c\ub294 \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc5d0 \ub300\ud55c \ucd94\uac00 \uc815\ubcf4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1107\u116e\u11ab\u1109\u1165\u11a8\/\" target=\"_blank\" rel=\"noopener\">\uc774\ubcc0\ub7c9 \ubd84\uc11d \uc18c\uac1c<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1103\u1166\u110b\u1175\u1110\u1165\u110b\u1174-\u1109\u1175\u11af\u110c\u1166-\u110b\u1168\/\" target=\"_blank\" rel=\"noopener\">\uc2e4\uc0dd\ud65c\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \uc774\ubcc0\ub7c9 \ub370\uc774\ud130\uc758 5\uac00\uc9c0 \uc608<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1109\u1165\u11ab\u1112\u1167\u11bc-\u1112\u116c\u1100\u1171-1\/\" target=\"_blank\" rel=\"noopener\">\ub2e8\uc21c \uc120\ud615 \ud68c\uadc0 \uc18c\uac1c<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1111\u1175\u110b\u1165\u1109\u1173\u11ab-\u1109\u1161\u11bc\u1100\u116a\u11ab-\u1100\u1168\u1109\u116e-1\/\" target=\"_blank\" rel=\"noopener\">\ud53c\uc5b4\uc2a8 \uc0c1\uad00 \uacc4\uc218 \uc18c\uac1c<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc774\ubcc0\ub7c9 \ubd84\uc11d\uc774\ub77c\ub294 \uc6a9\uc5b4\ub294 \ub450 \ubcc0\uc218\uc5d0 \ub300\ud55c \ubd84\uc11d\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uc811\ub450\uc0ac &#8220;bi&#8221;\uac00 &#8220;\ub458&#8221;\uc744 \uc758\ubbf8\ud558\uae30 \ub54c\ubb38\uc5d0 \uc774\uac83\uc744 \uae30\uc5b5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc758 \ubaa9\ud45c\ub294 \ub450 \ubcc0\uc218 \uac04\uc758 \uad00\uacc4\ub97c \uc774\ud574\ud558\ub294 \uac83\uc785\ub2c8\ub2e4. \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \uc138 \uac00\uc9c0 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. 1. \ud3ec\uc778\ud2b8 \ud074\ub77c\uc6b0\ub4dc 2. \uc0c1\uad00\uacc4\uc218 3. \ub2e8\uc21c \uc120\ud615 \ud68c\uadc0 \ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \ub450 \uac00\uc9c0 \ubcc0\uc218( (1) \uacf5\ubd80\uc5d0 \uc18c\ube44\ud55c \uc2dc\uac04 \ubc0f (2) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-2457","post","type-post","status-publish","format-standard","hentry","category-20"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/ko\/python\u110b\u1174-\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1107\u116e\u11ab\u1109\u1165\u11a8\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/python\u110b\u1174-\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1107\u116e\u11ab\u1109\u1165\u11a8\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T04:29:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/bivpython1.png\" \/>\n<meta name=\"author\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/\",\"url\":\"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/\",\"name\":\"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-22T04:29:06+00:00\",\"dateModified\":\"2023-07-22T04:29:06+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95: \uc608\uc81c \ud3ec\ud568\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/ko\/#website\",\"url\":\"https:\/\/statorials.org\/ko\/\",\"name\":\"Statorials\",\"description\":\"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/ko\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\",\"name\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\"},\"description\":\"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30\",\"sameAs\":[\"https:\/\/statorials.org\/ko\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","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:\/\/statorials.org\/ko\/python\u110b\u1174-\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1107\u116e\u11ab\u1109\u1165\u11a8\/","og_locale":"ko_KR","og_type":"article","og_title":"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/python\u110b\u1174-\u110b\u1175\u1107\u1167\u11ab\u1105\u1163\u11bc-\u1107\u116e\u11ab\u1109\u1165\u11a8\/","og_site_name":"Statorials","article_published_time":"2023-07-22T04:29:06+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/bivpython1.png"}],"author":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","Est. reading time":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/","url":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/","name":"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-22T04:29:06+00:00","dateModified":"2023-07-22T04:29:06+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/python%e1%84%8b%e1%85%b4-%e1%84%8b%e1%85%b5%e1%84%87%e1%85%a7%e1%86%ab%e1%84%85%e1%85%a3%e1%86%bc-%e1%84%87%e1%85%ae%e1%86%ab%e1%84%89%e1%85%a5%e1%86%a8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Python\uc5d0\uc11c \uc774\ubcc0\ub7c9 \ubd84\uc11d\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95: \uc608\uc81c \ud3ec\ud568"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/ko\/#website","url":"https:\/\/statorials.org\/ko\/","name":"Statorials","description":"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/ko\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4","name":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8"},"description":"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30","sameAs":["https:\/\/statorials.org\/ko"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2457","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/comments?post=2457"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2457\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=2457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=2457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=2457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}