Skip to content

Instantly share code, notes, and snippets.

@ShikouYamaue
Created May 2, 2017 04:21
Show Gist options
  • Save ShikouYamaue/15545da9fad0f9d7235d89fd7a68c5fe to your computer and use it in GitHub Desktop.
Save ShikouYamaue/15545da9fad0f9d7235d89fd7a68c5fe to your computer and use it in GitHub Desktop.
list1 = ['a', 'b', 'c']
list2 = map(lambda x: x+'z' if x == 'b' else x, list1)
print list2
>>>結果
['a', 'bz', 'c']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment