Skip to content

Instantly share code, notes, and snippets.

@bbookman
Created December 26, 2018 22:06
Show Gist options
  • Save bbookman/aca5b890a1f5ad64487594780301f82f to your computer and use it in GitHub Desktop.
Save bbookman/aca5b890a1f5ad64487594780301f82f to your computer and use it in GitHub Desktop.
Python List Comprehension: Find common numbers in two lists of numbers
'''
Find the common numbers in two lists (without using a tuple or set) list_a = [1, 2, 3, 4], list_b = [2, 3, 4, 5]
'''
list_a = [1, 2, 3, 4]
list_b = [2, 3, 4, 5]
common = [a for a in list_a if a in list_b]
print(common)
@Aishwarya-Wani18
Copy link

list_a = [1,2,3,4]
list_b = [2,3,4,5]
common_number = [num for num in list_b if num in list_a]
print(common_number)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment