Untitled

mail@pastecode.io avatar
unknown
python
19 days ago
238 B
2
Indexable
Never
import yaml
def yaml_load(filename):
    '''
    use filename variable to open a file
    load the contents into a variable with yaml and retrun it
    '''
    with open(filename, 'r') as f:
        data = yaml.load(f)
        return data
Leave a Comment