{"id":625,"date":"2020-06-01T14:48:58","date_gmt":"2020-06-01T05:48:58","guid":{"rendered":"http:\/\/www.mamacoding.com\/?p=625"},"modified":"2020-06-01T14:48:58","modified_gmt":"2020-06-01T05:48:58","slug":"python-%ed%8c%8c%ec%9d%b4%ec%8d%ac-%eb%b0%b0%ec%9a%b0%ea%b8%b07-%eb%a6%ac%ec%8a%a4%ed%8a%b8-%ea%b4%80%eb%a0%a8-%ed%95%a8%ec%88%98%eb%93%a4","status":"publish","type":"post","link":"http:\/\/www.mamacoding.com\/?p=625","title":{"rendered":"PYTHON \ud30c\uc774\uc36c \ubc30\uc6b0\uae307- \ub9ac\uc2a4\ud2b8 \uad00\ub828 \ud568\uc218\ub4e4"},"content":{"rendered":"<h2>&gt;&gt; \ub9ac\uc2a4\ud2b8 \uad00\ub828 \ud568\uc218\ub4e4<\/h2>\n<h3>1. \ub9ac\uc2a4\ud2b8\uc5d0 \uc694\uc18c \ucd94\uac00(append)<\/h3>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [1, 2, 3]<\/p>\n<p>&gt;&gt;&gt; a.append(4)<\/p>\n<p>&gt;&gt;&gt; a<\/p>\n<p>&nbsp;<\/p>\n<p>&gt;&gt;&gt; a.append([5,6])<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>2.\u00a0<strong>\ub9ac\uc2a4\ud2b8 \uc815\ub82c(sort)<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [1, 4, 3, 2]<\/p>\n<p>&gt;&gt;&gt; a.sort()<\/p>\n<p>&gt;&gt;&gt; a<\/p>\n<p>&gt;&gt;&gt; a = [&#8216;a&#8217;, &#8216;c&#8217;, &#8216;b&#8217;]<\/p>\n<p>&gt;&gt;&gt; a.sort()<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>3. \ub9ac\uc2a4\ud2b8 \ub4a4\uc9d1\uae30(reverse)<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [&#8216;a&#8217;, &#8216;c&#8217;, &#8216;b&#8217;]<\/p>\n<p>&gt;&gt;&gt; a.reverse()<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>4. \ub9ac\uc2a4\ud2b8 \uc694\uc18c \uc0bd\uc785(insert)<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [1,2,3]<\/p>\n<p>&gt;&gt;&gt; a.insert(0, 4)<\/p>\n<p>&gt;&gt;&gt; a<\/p>\n<p>&gt;&gt;&gt; a.insert(3, 5)<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>\u00a05. \ub9ac\uc2a4\ud2b8 \uc694\uc18c \uc81c\uac70(remove)<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [1, 2, 3, 1, 2, 3]<\/p>\n<p>&gt;&gt;&gt; a.remove(3)<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>6. \ub9ac\uc2a4\ud2b8 \ud655\uc7a5(extend)<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"566\">&gt;&gt;&gt; a = [1,2,3]<\/p>\n<p>&gt;&gt;&gt; a.extend([4,5])<\/p>\n<p>&gt;&gt;&gt; a<\/p>\n<p>&gt;&gt;&gt; b = [6, 7]<\/p>\n<p>&gt;&gt;&gt; a.extend(b)<\/p>\n<p>&gt;&gt;&gt; a<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>a.extend([4, 5])\ub294 a += [4, 5]\uc640 \ub3d9\uc77c\ud558\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&gt;&gt; \ub9ac\uc2a4\ud2b8 \uad00\ub828 \ud568\uc218\ub4e4 1. \ub9ac\uc2a4\ud2b8\uc5d0 \uc694\uc18c \ucd94\uac00(append) &gt;&gt;&gt; a = [1, 2, 3] &gt;&gt;&gt; a.append(4) &gt;&gt;&gt; a &nbsp; &gt;&gt;&gt; a.append([5,6]) &gt;&gt;&gt; a 2.\u00a0\ub9ac\uc2a4\ud2b8 \uc815\ub82c(sort) &gt;&gt;&gt; a = [1, 4, 3, 2] &gt;&gt;&gt; a.sort() &gt;&gt;&gt; a &gt;&gt;&gt; a = [&#8216;a&#8217;, &#8216;c&#8217;, &#8216;b&#8217;] &gt;&gt;&gt; a.sort() &gt;&gt;&gt; a 3. \ub9ac\uc2a4\ud2b8 \ub4a4\uc9d1\uae30(reverse) &gt;&gt;&gt; a = [&#8216;a&#8217;, &#8216;c&#8217;, &#8216;b&#8217;] &hellip; <a href=\"http:\/\/www.mamacoding.com\/?p=625\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;PYTHON \ud30c\uc774\uc36c \ubc30\uc6b0\uae307- \ub9ac\uc2a4\ud2b8 \uad00\ub828 \ud568\uc218\ub4e4&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[29],"tags":[24,34],"_links":{"self":[{"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/posts\/625"}],"collection":[{"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=625"}],"version-history":[{"count":1,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/posts\/625\/revisions"}],"predecessor-version":[{"id":626,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=\/wp\/v2\/posts\/625\/revisions\/626"}],"wp:attachment":[{"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=625"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=625"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.mamacoding.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}