...

/

Coding exercise on YAML

Coding exercise on YAML

Representing complex data using YAML data serialization format.

We'll cover the following...

Problem

See the example YAML data below. It demonstrates the usage of a list of dictionaries and a dictionary within a dictionary.

---
employee: 
  id: 1
  name: smith
  salary: 10000
  address: 
    city: toronto
    state: ontario
    country:
...