{"id":4109,"date":"2024-01-22T17:52:21","date_gmt":"2024-01-22T09:52:21","guid":{"rendered":"http:\/\/cnliutz.ipyingshe.net\/?p=4109"},"modified":"2024-01-22T17:52:23","modified_gmt":"2024-01-22T09:52:23","slug":"python%e7%b1%bb%e3%80%81%e5%87%bd%e6%95%b0%e4%b8%be%e4%be%8b","status":"publish","type":"post","link":"http:\/\/qbtobjow.ipyingshe.net:5347\/?p=4109","title":{"rendered":"python\u7c7b\u3001\u51fd\u6570\u4e3e\u4f8b"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#\u7c7b\u521b\u5efa\r\nclass Calculator:\r\n    def __init__(self):\r\n        print(\"A calculator has been created.\")\r\n    def add(self, x, y):\r\n        return x + y\r\n    def subtract(self, x, y):\r\n        return x - y\r\n    def multiply(self, x, y):\r\n        return x * y\r\ncal = Calculator()\r\nprint(cal.add(2,3))\r\nprint(cal.subtract(7,2))\r\nprint(cal.multiply(3,8))\r\n\r\n#\u51fd\u6570\r\ndef camel_to_snake(s, separator='_'):\r\n   result = ''\r\n   for c in s:\r\n       if c.isupper():\r\n           result += separator + c.lower()\r\n       else:\r\n           result += c\r\n   return result\r\n\r\nprint(camel_to_snake(\"ThisIsCamelCased\").title()) # Output: \"this_is_camel_cased\"\r\nprint(camel_to_snake(\"ThisIsCamelCased\", \"-\")) # Output: \"this-is-camel-cased\"\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,10],"tags":[],"class_list":["post-4109","post","type-post","status-publish","format-standard","hentry","category-2","category-python"],"_links":{"self":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4109","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4109"}],"version-history":[{"count":1,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4109\/revisions"}],"predecessor-version":[{"id":4110,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4109\/revisions\/4110"}],"wp:attachment":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4109"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4109"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}