list = [{'text': 1, 'b': 2}, {'text': 3, 'd': 4}, {'text': 5, 'f': 6}] subtitle=[] for value in list:    subtitle.append(value['text']) 

Read more of this post