{"id":5867,"date":"2025-03-28T15:42:46","date_gmt":"2025-03-28T06:42:46","guid":{"rendered":"https:\/\/yorozu.cloudfree.jp\/wordpress\/?p=5867"},"modified":"2025-03-28T15:46:06","modified_gmt":"2025-03-28T06:46:06","slug":"5867","status":"publish","type":"post","link":"https:\/\/yorozu.cloudfree.jp\/wordpress\/?p=5867","title":{"rendered":"\u7df4\u7fd2\u554f\u984c\uff0841\u301c45\uff09"},"content":{"rendered":"\n<p>\u5b9f\u884c\u4f8b\u306f\u300cstupa.sarnath\u300d\u306e\u300cGoogle Colabotry\u300d\u74b0\u5883\u306b\u4fdd\u5b58\u3057\u3066\u3042\u308b<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>&quot;&quot;&quot;\n\n41. max\n\u5909\u6570\u306b\u30ea\u30b9\u30c8[11,2,7,13,5]\u3092\u4ee3\u5165\u3057\uff0c\u6700\u5927\u5024\u3092\u51fa\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff0e\n\n\u671f\u5f85\u3059\u308b\u51fa\u529b\uff1a13\n\n42. min\n\u5909\u6570\u306b\u30ea\u30b9\u30c8[11,2,7,13,5]\u3092\u4ee3\u5165\u3057\uff0c\u6700\u5c0f\u5024\u3092\u51fa\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff0e\n\n\u671f\u5f85\u3059\u308b\u51fa\u529b\uff1a2\n\n43. sum\n\u5909\u6570\u306b\u30ea\u30b9\u30c8[11,2,7,13,5]\u3092\u4ee3\u5165\u3057\uff0c\u7dcf\u548c\u3092\u51fa\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff0e\n\n\u671f\u5f85\u3059\u308b\u51fa\u529b\uff1a38\n\n44. \u6607\u9806\u30bd\u30fc\u30c8\n\u5909\u6570\u306b\u30ea\u30b9\u30c8[5,3,1,4,2]\u3092\u683c\u7d0d\u3057\uff0c\u6607\u9806\u306b\u4e26\u3073\u66ff\u3048\u305f\u30ea\u30b9\u30c8\u3092\u51fa\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff0e\n\n\u671f\u5f85\u3059\u308b\u51fa\u529b\uff1a[1,2,3,4,5]\n\n45. \u30e9\u30e0\u30c0\u5f0f\n\u3044\u307e\uff0c\u8f9e\u66f8\u3092\u8981\u7d20\u3068\u3059\u308b\u30ea\u30b9\u30c8\u304c\u6b21\u306e\u3088\u3046\u306b\u4e0e\u3048\u3089\u308c\u3066\u3044\u307e\u3059\uff0e\n\nli = [{&#39;a&#39;: 6, &#39;b&#39;: 7, &#39;c&#39;: 6},\n      {&#39;a&#39;: 4, &#39;b&#39;: 2, &#39;c&#39;: 3},\n      {&#39;a&#39;: 1, &#39;b&#39;: 5, &#39;c&#39;: 8}]\n\u3053\u306e\u3068\u304d\uff0c\u8f9e\u66f8\u306e\u30ad\u30fc\u304c&#39;b&#39;\u306e\u5024\u306b\u95a2\u3057\u3066\u964d\u9806\u306b\u306a\u308b\u3088\u3046\u306b\u30bd\u30fc\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\uff0e\n\n\u671f\u5f85\u3059\u308b\u51fa\u529b\uff1a[{&#39;a&#39;: 6, &#39;b&#39;: 7, &#39;c&#39;: 6}, {&#39;a&#39;: 1, &#39;b&#39;: 5, &#39;c&#39;: 8}, {&#39;a&#39;: 4, &#39;b&#39;: 2, &#39;c&#39;: 3}]\n\n&quot;&quot;&quot;\n#\n#\n#41. max\n#\nprint(&quot;41. max&quot;)\nx = [11,2,7,13,5]\nprint(max(x))\n#\n#42. mi\n#\nprint(&quot;42. min&quot;)\nx = [11,2,7,13,5]\nprint(min(x))\n#\n#43. sum\n#\nprint(&quot;43. sum&quot;)\nx = [11,2,7,13,5]\nprint(sum(x))\n#\n#44. \u6607\u9806\u30bd\u30fc\u30c8\n#\nprint(&quot;44. \u6607\u9806\u30bd\u30fc\u30c8&quot;)\nx = [5,3,1,4,2]\nprint(sorted(x))\n#print(sorted(x,reverse=True))\n#\n#\n#45. \u30e9\u30e0\u30c0\u5f0f\n#\nprint(&quot;45. \u30e9\u30e0\u30c0\u5f0f&quot;)\nli = [{&#39;a&#39;: 6, &#39;b&#39;: 7, &#39;c&#39;: 6},\n      {&#39;a&#39;: 4, &#39;b&#39;: 2, &#39;c&#39;: 3},\n      {&#39;a&#39;: 1, &#39;b&#39;: 5, &#39;c&#39;: 8}]\nprint(sorted(li, reverse=True, key=lambda li: li[&#39;b&#39;]))      #\u6b63\u89e3<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u30fbPython\u5b66\u7fd2\uff08\uff15\uff15\u672c\u30ce\u30c3\u30af\uff09\u306b\u3064\u3044\u3066<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[54],"tags":[17],"class_list":["post-5867","post","type-post","status-publish","format-standard","hentry","category-99_","tag-python"],"_links":{"self":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/5867","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5867"}],"version-history":[{"count":5,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/5867\/revisions"}],"predecessor-version":[{"id":5871,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/5867\/revisions\/5871"}],"wp:attachment":[{"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5867"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5867"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yorozu.cloudfree.jp\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}