16,311 questions
21,782 answers
573 users
lst = [ { 'python':87, 'java':12 }, { 'c':578, 'c++':908 }, { 'php':3, 'c#':7 } ] lst.append({'go':555, 'f#':888}) print(lst) ''' run: [{'python': 87, 'java': 12}, {'c': 578, 'c++': 908}, {'php': 3, 'c#': 7}, {'go': 555, 'f#': 888}] '''