{"id":2594,"date":"2022-09-04T18:55:13","date_gmt":"2022-09-04T10:55:13","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=2594"},"modified":"2022-09-04T18:55:13","modified_gmt":"2022-09-04T10:55:13","slug":"python%e5%ad%90%e7%b1%bb%e8%b0%83%e7%94%a8%e7%88%b6%e7%b1%bb%e3%80%81%e9%87%8d%e6%96%b0%e5%ae%9a%e4%b9%89%e4%b8%bb%e7%b1%bb%e7%9a%84%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"http:\/\/xc.ipyingshe.net:5347\/?p=2594","title":{"rendered":"python\u5b50\u7c7b\u8c03\u7528\u7236\u7c7b\u3001\u91cd\u65b0\u5b9a\u4e49\u4e3b\u7c7b\u7684\u65b9\u6cd5"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#\u5b50\u7c7b\u8c03\u7528\u7236\u7c7b\nclass Calc:\n    def __init__(self):\n        self.data = &#91;]\n    def append2(self, x):\n          self.data.append(x)\n          print(self.data)             \n\nclass Calc_child(Calc):\n    def add(self, a, b):\n        return a\/b**2\n\nc_child = Calc_child()\nc_child.append2(4)\nprint(c_child.data)\nprint(c_child.add(4, 4))\n'''\n&#91;4]\n&#91;4]\n0.25\n'''\n#\u91cd\u65b0\u5b9a\u4e49\u4e3b\u7c7b\u7684\u65b9\u6cd5 printBMI(self)\nclass BMI:\n    def __init__(self,height,weight):\n        self.bmi = weight\/height**2\n    def printBMI(self):\n        print(\"Your BMI is {:.1f}\".format(self.bmi))\n\nclass ChinaBMI(BMI):\n    def printBMI(self):\n        print(\"\u4f60\u7684BMl\u662f{:.1f}\".format(self.bmi))\n        if self.bmi &lt; 18.5:\n            print(\"\u504f\u7626\uff01\")\n        elif self.bmi &lt; 24:\n            print(\"\u7a0d\u7626\")\n        elif self.bmi&lt; 26:\n            print(\"\u6b63\u5e38\")\n        elif self.bmi &lt; 28:\n            print(\"\u504f\u80d6\")\n        else:\n            print(\"\u80a5\u80d6\")\n            \nh = float(input(\"height=\"))\nw = float(input(\"wight=\"))\nx = ChinaBMI(h,w)\nx.printBMI()\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],"tags":[],"class_list":["post-2594","post","type-post","status-publish","format-standard","hentry","category-2"],"_links":{"self":[{"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2594","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2594"}],"version-history":[{"count":0,"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2594\/revisions"}],"wp:attachment":[{"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2594"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2594"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/xc.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2594"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}