{"id":164008,"date":"2019-12-18T09:44:11","date_gmt":"2019-12-18T01:44:11","guid":{"rendered":"https:\/\/lrxjmw.cn\/?p=164008"},"modified":"2019-11-27T09:45:13","modified_gmt":"2019-11-27T01:45:13","slug":"python-duiqi-context","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/python-duiqi-context.html","title":{"rendered":"\u8bf4\u8bf4\u5728 python \u4e2d\uff0c\u5982\u4f55\u5bf9\u9f50\u6587\u672c"},"content":{"rendered":"
\u5728 python \u4e2d\uff0c\u53ef\u7528 rjust() \u3001 ljust() \u548c center() \u65b9\u6cd5\u5206\u522b\u5b9e\u73b0\u6587\u672c\u53f3\u5bf9\u9f50\u3001\u5de6\u5bf9\u9f50\u4ee5\u53ca\u5c45\u4e2d\u5bf9\u9f50\u529f\u80fd\u3002<\/p>\n
\u5b83\u4eec\u7684\u7b2c\u4e00\u4e2a\u53c2\u6570\u662f\u4e00\u4e2a\u6574\u6570\uff0c\u8868\u793a\u586b\u5145\u540e\u7684\u603b\u957f\u5ea6\u3002\u4e0d\u8db3\u7684\u90e8\u5206\uff0c\u4f7f\u7528\u7a7a\u683c\uff08\u9ed8\u8ba4\uff09\u6765\u586b\u5145\u3002<\/p>\n
print('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.rjust(10)+',')\r\nprint('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.rjust(20)+',')\r\nprint('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.ljust(20)+',')\r\n<\/pre>\n\u8fd0\u884c\u7ed3\u679c\uff1a<\/p>\n
<\/a><\/p>\n
\u5b83\u4eec\u7684\u7b2c\u4e8c\u4e2a\u53c2\u6570\u8868\u793a\u9700\u8981\u586b\u5145\u7684\u5b57\u7b26\uff08\u53ef\u9009\uff09\uff0c \u9ed8\u8ba4\u4e3a\u7a7a\u683c\u5b57\u7b26\u3002<\/p>\n
print('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.ljust(20,'*')+',')\r\n<\/pre>\n\u8fd0\u884c\u7ed3\u679c\uff1a
\n<\/a><\/p>\ncenter() \u4f7f\u7528\u65b9\u6cd5\u4e0e rjust() \u3001 ljust() \u7c7b\u4f3c\uff1a<\/p>\n
print('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.center(20)+',')\r\nprint('\u5982\u4f55\u642d\u5efa\u6570\u636e\u4e2d\u53f0'.center(20,'*')+',')\r\n<\/pre>\n\u8fd0\u884c\u7ed3\u679c\uff1a<\/p>\n