Skip to content

Instantly share code, notes, and snippets.

@sincerefly
Last active August 29, 2015 14:20
Show Gist options
  • Save sincerefly/05f70ee6d5d330fad455 to your computer and use it in GitHub Desktop.
Save sincerefly/05f70ee6d5d330fad455 to your computer and use it in GitHub Desktop.
一个通过for...in...if...生成列表的例子
a = range(1,11)
b = range(1,10)
c = sum([item for item in a if item in b])
print c
# result: 45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment