这段代码如何pythonic?
查询数据库所有id在list里的文章,加入article_list. article_list = [] for i in range(0, len(list)): cur.execute('select * from articles where…
对于条件分支很多的情况,有没有更Pythonic的写法
比如五个条件A/B/C/D/E,会有32种情况 if A and B and C and D and E: do_one() elif A and B and C and D and not E: do_two() elif A and B and C …