Skip to content

Instantly share code, notes, and snippets.

@afaqk9394
Last active November 2, 2019 21:09
Show Gist options
  • Select an option

  • Save afaqk9394/6ff597fa7b805e2bc831d5dbbf02fa0f to your computer and use it in GitHub Desktop.

Select an option

Save afaqk9394/6ff597fa7b805e2bc831d5dbbf02fa0f to your computer and use it in GitHub Desktop.
import yaml
with open('persons.yaml', 'r') as f:
my_dict = yaml.safe_load(f)
for distro in my_dict:
print(distro['gender'])
print(distro['name'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment