What is the name for [x for x in some_list] type of construct in python? [duplicate]
Couldn't really find it, but probably it's me not knowing how to search properly :(
Just wanted to find out what the name is for:
[x for x in some_list]
type of construct?
It's a list comprehension
精彩评论