{"id":13129,"date":"2022-11-29T15:01:47","date_gmt":"2022-11-29T07:01:47","guid":{"rendered":"https:\/\/fgchen.com\/wpedu\/?p=13129"},"modified":"2026-03-30T14:32:51","modified_gmt":"2026-03-30T06:32:51","slug":"tqc-%e7%a8%8b%e5%bc%8f%e8%aa%9e%e8%a8%80python-307-%e4%b9%98%e6%b3%95%e8%a1%a8","status":"publish","type":"post","link":"https:\/\/fgchen.com\/wpedu\/2022\/11\/tqc-%e7%a8%8b%e5%bc%8f%e8%aa%9e%e8%a8%80python-307-%e4%b9%98%e6%b3%95%e8%a1%a8\/","title":{"rendered":"TQC+ \u7a0b\u5f0f\u8a9e\u8a00Python 307 \u4e58\u6cd5\u8868"},"content":{"rendered":"1. \u984c\u76ee\u8aaa\u660e:\r\n\u8acb\u958b\u555fPYD307.py\u6a94\u6848\uff0c\u4f9d\u4e0b\u5217\u984c\u610f\u9032\u884c\u4f5c\u7b54\uff0c\u4f9d\u8f38\u5165\u503c\u8a08\u7b97n*n\u4e58\u6cd5\u8868\uff0c\u4f7f\u8f38\u51fa\u503c\u7b26\u5408\u984c\u610f\u8981\u6c42\u3002\u4f5c\u7b54\u5b8c\u6210\u8acb\u53e6\u5b58\u65b0\u6a94\u70baPYA307.py\u518d\u9032\u884c\u8a55\u5206\u3002\r\n\r\n2. \u8a2d\u8a08\u8aaa\u660e\uff1a\r\n(1) \u8acb\u4f7f\u7528\u8ff4\u5708\u6558\u8ff0\u64b0\u5beb\u4e00\u7a0b\u5f0f\uff0c\u8981\u6c42\u4f7f\u7528\u8005\u8f38\u5165\u4e00\u500b\u6b63\u6574\u6578n\uff08n&lt;10\uff09\uff0c\u986f\u793an*n\u4e58\u6cd5\u8868\u3002\r\n\r\n(2) \u6bcf\u9805\u904b\u7b97\u5f0f\u9700\u9032\u884c\u683c\u5f0f\u5316\u6392\u5217\u6574\u9f4a\uff0c\u6bcf\u500b\u904b\u7b97\u5b50\u53ca\u904b\u7b97\u5143\u8f38\u51fa\u7684\u6b04\u5bec\u70ba2\uff0c\u800c\u6bcf\u9805\u4e58\u7a4d\u8f38\u51fa\u7684\u6b04\u5bec\u70ba4\uff0c\u7686\u9760\u5de6\u5c0d\u9f4a\u4e0d\u8df3\u884c\u3002\r\n\r\n3. \u8f38\u5165\u8f38\u51fa\uff1a\r\n\u8f38\u5165\u8aaa\u660e\r\n\u4e00\u500b\u6b63\u6574\u6578n\uff08n&lt;10\uff09\r\n\r\n\u8f38\u51fa\u8aaa\u660e\r\n\u8f38\u51fa\u683c\u5f0f\u5316\u7684n*n\u4e58\u6cd5\u8868\r\n\r\n&nbsp;\r\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\u7bc4\u4f8b\u8f38\u51651\r\n3\r\n\u7bc4\u4f8b\u8f38\u51fa1\r\n1 * 1 = 1   2 * 1 = 2   3 * 1 = 3   \r\n1 * 2 = 2   2 * 2 = 4   3 * 2 = 6   \r\n1 * 3 = 3   2 * 3 = 6   3 * 3 = 9   \r\n\u7bc4\u4f8b\u8f38\u51652\r\n5\r\n\u7bc4\u4f8b\u8f38\u51fa2\r\n1 * 1 = 1   2 * 1 = 2   3 * 1 = 3   4 * 1 = 4   5 * 1 = 5   \r\n1 * 2 = 2   2 * 2 = 4   3 * 2 = 6   4 * 2 = 8   5 * 2 = 10  \r\n1 * 3 = 3   2 * 3 = 6   3 * 3 = 9   4 * 3 = 12  5 * 3 = 15  \r\n1 * 4 = 4   2 * 4 = 8   3 * 4 = 12  4 * 4 = 16  5 * 4 = 20  \r\n1 * 5 = 5   2 * 5 = 10  3 * 5 = 15  4 * 5 = 20  5 * 5 = 25  \r\n<\/pre>\r\n&nbsp;\r\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\"># TODO\r\nn = eval(input())\r\nfor i in range(1, n+1):\r\n  for j in range(1, n+1):\r\n    print('%-2d* %-2d= %-4d' %(j,i,i*j), end='') \r\n  print()\r\n<\/pre>\r\n&nbsp;","protected":false},"excerpt":{"rendered":"<p>1. \u984c\u76ee\u8aaa\u660e: \u8acb\u958b\u555fPYD307.py\u6a94\u6848\uff0c\u4f9d\u4e0b\u5217\u984c\u610f\u9032\u884c\u4f5c\u7b54\uff0c\u4f9d\u8f38\u5165\u503c\u8a08\u7b97 &hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","fifu_image_url":"","fifu_image_alt":"","footnotes":""},"categories":[266],"tags":[],"class_list":["post-13129","post","type-post","status-publish","format-standard","hentry","category-266"],"_links":{"self":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/13129","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/comments?post=13129"}],"version-history":[{"count":3,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/13129\/revisions"}],"predecessor-version":[{"id":13760,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/13129\/revisions\/13760"}],"wp:attachment":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/media?parent=13129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/categories?post=13129"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/tags?post=13129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}