{"id":1584,"date":"2024-10-18T19:32:43","date_gmt":"2024-10-18T11:32:43","guid":{"rendered":"https:\/\/www.madbull.site\/?p=1584"},"modified":"2024-10-18T19:32:43","modified_gmt":"2024-10-18T11:32:43","slug":"python%e8%a7%a3%e6%9e%90yaml%e6%96%87%e4%bb%b6","status":"publish","type":"post","link":"https:\/\/www.madbull.site\/?p=1584","title":{"rendered":"python\u89e3\u6790yaml\u6587\u4ef6"},"content":{"rendered":"\n<p class=\"has-large-font-size\"><strong>\u6d4b\u8bd5\u6587\u4ef6tt.yaml\uff0c\u5185\u5bb9\uff1a<\/strong><\/p>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>%YAML 1.1\n---\n# --- \u4ee3\u8868\u6587\u6863\u7684\u5f00\u59cb\nscore:\n  # - \u4ee3\u8868\u8fd9\u4e9b\u662f\u6570\u7ec4\n  - name: Hanmeimei    # #\u53f7\u5f80\u540e\u5168\u662f\u6ce8\u91ca\n    age: 11\n    sessions:\n     chineses: 100\n     math: 100\n     english: 100\n     science: 100\n  - name: Lilei\n    age: 12\n\n    # \u4e2d\u62ec\u53f7\u4ee3\u8868\u662f\u4e00\u4e2a\u5217\u8868\n    # \u5217\u8868\u4e2d\u7684\u6570\u636e\u5b57\u6bb5\u53ef\u4ee5\u4e0d\u4e00\u81f4\n    fruit: &#91;&#91;apple, pear], &#91;banana, peach, orange]]\n\n    # \u53ea\u8981\u4e0b\u4e00\u7ea7\u7684\u6570\u636e\u7f29\u8fdb\u957f\u5ea6\u76f8\u540c\uff0c\u4e14\u6bd4\u672c\u7ea7\u957f\u5c31\u53ef\u4ee5\n    sessions:\n           chineses: 95\n           math: 95\n           english: 95\n           science: 95\n...\n# ... \u4ee3\u8868\u6587\u6863\u7684\u7ed3\u675f\n\n%YAML 1.1\n---\nteachers:\n    &amp;anchorrrr\n  - name: Qiaofen\n    age: 32\n    sex: 1\n    address: >\n        CN\n        Shandong\n        Qingdao\n  - name: Wangyuyan\n    age: 19\n    sex: 2\n    # !!\u8868\u793a\u7528\u5b57\u7b26\u4e32\u89e3\u91ca\u4e0b\u8fb9\u7684\u6570\u636e\n    banner: !!str\n        Hello,       \n        my name is Wangyuyan.\n        I am your english teacher.\n    address: |\n      CN\n      Shandong\n      Jinan\nss: *anchorrrr\n...\n\n%YAML 1.1\n---\nroot:\n   &amp;anchorr\n   name: Murongfu\n   age: 28\nanchor_t:\n   &amp;anchorrr\n   kk: *anchorr\n   kongfu: Douzhuanxingyi\nanchor_tt:\n   kkkk: *anchorr\n   ssss: *anchorrr\n\n...<\/code><\/pre>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-large-font-size\"><strong>python\u89e3\u6790\u4ee3\u7801\uff0ctyaml.py\uff1a<\/strong><\/p>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>import yaml\n\nwith open(\"tt.yaml\", \"r\") as fd :\n    doc = list(yaml.safe_load_all(fd))\n\n\nprint(\"=================\\ndocument 0 : \")\nprint(doc&#91;0])\nprint(\"=================\\ndocument 1 : \")\nprint(doc&#91;1])\nprint(\"=================\\ndocument 2 : \")\nprint(doc&#91;2])<\/code><\/pre>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-large-font-size\"><strong>\u6d4b\u8bd5\u7ed3\u679c\uff1a<\/strong><\/p>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"804\" height=\"346\" src=\"https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/10\/\u56fe\u7247-17.png\" alt=\"\" class=\"wp-image-1585\" srcset=\"https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/10\/\u56fe\u7247-17.png 804w, https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/10\/\u56fe\u7247-17-300x129.png 300w, https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/10\/\u56fe\u7247-17-768x331.png 768w\" sizes=\"auto, (max-width: 804px) 100vw, 804px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p># &#8212; \u4ee3\u8868\u6587\u6863\u7684\u5f00\u59cb<br \/>\n  # &#8211; \u4ee3\u8868\u8fd9\u4e9b\u662f\u6570\u7ec4<br \/>\n  &#8211; name: Hanmeimei    # #\u53f7\u5f80\u540e\u5168\u662f\u6ce8\u91ca<br \/>\n    # \u4e2d\u62ec\u53f7\u4ee3\u8868\u662f\u4e00\u4e2a\u5217\u8868<br \/>\n    # \u5217\u8868\u4e2d\u7684\u6570\u636e\u5b57\u6bb5\u53ef\u4ee5\u4e0d\u4e00\u81f4<br \/>\n    # \u53ea\u8981\u4e0b\u4e00\u7ea7\u7684\u6570\u636e\u7f29\u8fdb\u957f\u5ea6\u76f8\u540c\uff0c\u4e14\u6bd4\u672c\u7ea7\u957f\u5c31\u53ef\u4ee5<br \/>\n# &#8230; \u4ee3\u8868\u6587\u6863\u7684\u7ed3\u675f<br \/>\n    # !!\u8868\u793a\u7528\u5b57\u7b26\u4e32\u89e3\u91ca\u4e0b\u8fb9\u7684\u6570\u636e<\/p>\n","protected":false},"author":1,"featured_media":548,"comment_status":"open","ping_status":"open","sticky":false,"template":"single-with-sidebar","format":"standard","meta":{"footnotes":""},"categories":[155,154],"tags":[142,288,517],"class_list":["post-1584","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-154","tag-python","tag-yaml","tag-517"],"_links":{"self":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/1584","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1584"}],"version-history":[{"count":1,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/1584\/revisions"}],"predecessor-version":[{"id":1586,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/1584\/revisions\/1586"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/media\/548"}],"wp:attachment":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1584"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1584"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1584"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}