Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 21, 2020 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/739dbc789d81ecf25fdc9feb9d16d952 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/739dbc789d81ecf25fdc9feb9d16d952 to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5,6,7,8,9,10,11,12]
l2=[n for n in l1 if n%2==0 if n%3==0]
print (l2)#Output:[6, 12]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment