Why I get ‘list’ object has no attribute ‘items’?

result_list = [int(v) for k,v in qs[0].items()]

qs is a list, qs[0] is the dict which you want!

Leave a Comment