Jonathan Hsu
1 min readOct 29, 2019

--

Agreed, list comprehension gives you the flexibility to both make modifications to the list data or filter list values as you said.

def transformation(i):
# function for transformation
return i
def condition(i):
# function for condition
return True
new_list = [
transformation(i)
for i in old list
if condition(i)
]

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response