{"id":212,"date":"2019-11-21T04:57:23","date_gmt":"2019-11-20T20:57:23","guid":{"rendered":"https:\/\/jingran.vip\/?p=212"},"modified":"2019-11-23T03:15:00","modified_gmt":"2019-11-22T19:15:00","slug":"%e9%9b%b6%e5%9f%ba%e7%a1%80%e5%85%a5%e9%97%a8%e5%ad%a6%e4%b9%a0python-%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0%ef%bc%88%e4%ba%8c%ef%bc%89%e5%8f%98%e9%87%8f%e5%92%8c%e5%ad%97%e7%ac%a6%e4%b8%b2%ef%bc%881","status":"publish","type":"post","link":"https:\/\/jingran.vip\/index.php\/2019\/11\/21\/%e9%9b%b6%e5%9f%ba%e7%a1%80%e5%85%a5%e9%97%a8%e5%ad%a6%e4%b9%a0python-%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0%ef%bc%88%e4%ba%8c%ef%bc%89%e5%8f%98%e9%87%8f%e5%92%8c%e5%ad%97%e7%ac%a6%e4%b8%b2%ef%bc%881\/","title":{"rendered":"\u96f6\u57fa\u7840\u5165\u95e8\u5b66\u4e60Python \u2013 \u5b66\u4e60\u7b14\u8bb0\uff08\u4e8c\uff09\u53d8\u91cf\u548c\u5b57\u7b26\u4e32\uff081\uff09"},"content":{"rendered":"\n<p><strong>\u53d8\u91cf<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>x = 3\n#\u7ed9x\u8d4b\u503c<\/code><\/pre>\n\n\n\n<p>x\u662f\u53d8\u91cf\uff0c3\u662f\u503c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(x)\n#\u8f93\u51fax\u7684\u503c<\/code><\/pre>\n\n\n\n<p>\u53d8\u91cf\u53ef\u4ee5\u7531\u5b57\u6bcd\u3001\u6570\u5b57\u548c\u4e0b\u5212\u7ebf\u7ec4\u6210\uff0c\u4f46\u4e0d\u80fd\u4ee5\u6570\u5b57\u6253\u5934\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>iloveyou1314 = 1314 \n#\u6b64\u4ee3\u7801\u6709\u6548<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>520baby =520  \n#\u6b64\u4ee3\u7801\u65e0\u6548<\/code><\/pre>\n\n\n\n<p>Python 3\u652f\u6301\u4e2d\u6587\u53d8\u91cf<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u5e78\u8fd0\u6570 = 8\nprint(\u5e78\u8fd0\u6570)<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>\u53d8\u91cf\u7684\u503c\u53ef\u53d8<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name = \"\u5c0f\u7532\u9c7c\"\nprint(name)\nname = \"\u8001\u4e4c\u9f9f\"\nprint(name)<\/code><\/pre>\n\n\n\n<p>\u53d8\u91cf\u7684\u503c\u53d6\u51b3\u4e8e\u4e0a\u4e00\u6b21\u8d4b\u503c\u64cd\u4f5c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>x = 3\ny = 5\ny = x\nprint(y)<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>x = y = 3\nx\ny<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>x = 3 \ny = 5\nz = x\nx = y\ny = z\nprint(x, y)<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>x = 3\ny = 5\nx, y = y, x\nprint(x, y)\n<\/code><\/pre>\n\n\n\n<p><strong>\u5b57\u7b26\u4e32<\/strong><\/p>\n\n\n\n<p>\u201c\u5c0f\u7532\u9c7c\u201d \u201c\u8001\u4e4c\u9f9f\u201d<\/p>\n\n\n\n<p>\u5355\u5f15\u53f7\uff08\u6587\u672c\uff09\uff0c\u53cc\u5f15\u53f7\uff08\u6587\u672c\uff09\uff0c\u4e09\u5f15\u53f7<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print('I love China.')<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>print(\"I love China.\")<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>print('Let's go!') \n#\u6b64\u4ee3\u7801\u65e0\u6548 <\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>print('\"Life is short, you need Python.\"')<\/code><\/pre>\n\n\n\n<p><strong>\u8f6c\u4e49\u5b57\u7b26\\<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print('\\\"Life is short, Let\\'s learn Python.\\\"')<\/code><\/pre>\n\n\n\n<p><strong>\\n \u6362\u884c\u7b26<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(\"I love Python. \\nI love FishC.\")<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u53d8\u91cf x\u662f\u53d8\u91cf\uff0c3\u662f\u503c \u53d8\u91cf\u53ef\u4ee5\u7531\u5b57\u6bcd\u3001\u6570\u5b57\u548c\u4e0b\u5212\u7ebf\u7ec4\u6210\uff0c\u4f46\u4e0d\u80fd\u4ee5\u6570\u5b57\u6253\u5934\u3002 Python 3\u652f\u6301\u4e2d [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":190,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,10],"tags":[],"_links":{"self":[{"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/posts\/212"}],"collection":[{"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/comments?post=212"}],"version-history":[{"count":2,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/posts\/212\/revisions"}],"predecessor-version":[{"id":237,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/posts\/212\/revisions\/237"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/media\/190"}],"wp:attachment":[{"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/media?parent=212"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/categories?post=212"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jingran.vip\/index.php\/wp-json\/wp\/v2\/tags?post=212"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}