list of points where each point should be represented as a dictionary with keys: ‘x’ and ‘y’ code example

Example 1: how to load multiple list of dictionary values which is stored in python file and load into another python file in python over loop

for d in datathing: # remember that datathing is a list
  print(d['created_on'], '--',
        d['status'] + ':')
  print(d['body'])
  print("")

Example 2: python key value pair list

student = {"first_name": "Henry", "last_name": "Smith", "age": 20} # key: value

print(student["first_name"])
>>> Henry