How to indent Python list-comprehensions?

前端 未结 7 1263
失恋的感觉
失恋的感觉 2021-01-30 06:17

List comprehensions can be useful in certain situations, but they can also be rather horrible to read.. As a slightly exaggerated example, how would you indent the following?

7条回答
  •  梦毁少年i
    2021-01-30 06:53

    allUuids = [x.id 
                for x in self.db.query(schema.allPostsUuid).execute(timeout = 20) 
                if x.type == "post" and x.deleted is not False]
    

提交回复
热议问题