cur = [("t1", "d1"), ("t2", "d2")]
[{'description': 'd1', 'title': 't1'}, {'description': 'd2', 'title': 't2'}]
python
cur = [("t1", "d1"), ("t2", "d2")] post_dict = {} posts = [] for row in cur: post_dict['title'] = row[0] post_dict['description'] = row[1] print "post_dict:",post_dict posts.append(post_dict) print "posts:",posts
python
post_dict: {'description': 'd1', 'title': 't1'} posts: [{'description': 'd1', 'title': 't1'}] post_dict: {'description': 'd2', 'title': 't2'} posts: [{'description': 'd2', 'title': 't2'}, {'description': 'd2', 'title': 't2'}]
python
cur = [("a", "a1"), ("b", "b1")] posts = [] posts = [dict(title=row[0], description=row[1]) for row in cur] print "posts:",posts
python
posts: [{'description': 'd1', 'title': 't1'}, {'description': 'd2', 'title': 't2'}]
萧十郎
猛跑小猪
相关分类