Python에서 YAML 파일을 JSON 개체로 변환 YAML 파일을 로드하여 Python JSON 개체로 변환하려면 어떻게 해야 합니까? YAML 파일은 다음과 같습니다. Section: heading: Heading 1 font: name: Times New Roman size: 22 color_theme: ACCENT_2 SubSection: heading: Heading 3 font: name: Times New Roman size: 15 color_theme: ACCENT_2 Paragraph: font: name: Times New Roman size: 11 color_theme: ACCENT_2 Table: style: MediumGrid3-Accent2 PyYAML 라이브러리는 이러한 용도..