How to make array list using Dictionaries

how can i make this type of array list…
anyone please help me…

[
  {
    "title": "ABCDEFG" ,
    "slug" : "abc_defg",
    "image": "image link"
  },
  {
    "title": "ABCDEFG",
    "slug" : "abc_defg",
    "image": "image link"
  },
  {
    "title": "ABCDEFG",
    "slug" : "abc_defg",
    "image": "image link"
  }
]

and also can add more list…

Try this, you’ll get output as expected.

2 Likes