“Python escribe yaml” Código de respuesta

Python Leer Yaml

# read_categories.py file

import yaml

with open(r'E:\data\categories.yaml') as file:
    documents = yaml.full_load(file)

    for item, doc in documents.items():
        print(item, ":", doc)
Stupid Stork

Python escribe yaml

import yaml

dict_file = [{'sports' : ['soccer', 'football', 'basketball', 'cricket', 'hockey', 'table tennis']},
{'countries' : ['Pakistan', 'USA', 'India', 'China', 'Germany', 'France', 'Spain']}]

with open(r'E:\data\store_file.yaml', 'w') as file:
    documents = yaml.dump(dict_file, file)
Stupid Stork

Respuestas similares a “Python escribe yaml”

Preguntas similares a “Python escribe yaml”

Más respuestas relacionadas con “Python escribe yaml” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código