Skip to content

Pre-Requisites


YAML

  • Format to store configuration data

Key Value

  • There must be a blank space after the colon to separate the key and value
    name: Abdur Rahman
    age: 23
    

List

  • The - indicates that the item is a part of the list
    Fruits:
    - Apple
    - Banana
    - Mango
    
    Cities:
    - Toronto
    - Calgary
    - Waterloo
    

Dictionary

  • Equal spacing for nesting
  • Unequal spacing will lead to unwanted nesting
    Student:
        name: Abdur Rahman
        age: 23
        location: Toronto
    
    Employee:
        dept: Computer Science
        company: Google
    

List of Dictionaries

People:
    - Student:
        name: Abdur Rahman
        age: 23
        location: Toronto

    - Employee:
        dept: Computer Science
        company: Google

Last updated: 2022-09-26