Skip to content

Instantly share code, notes, and snippets.

@CEZERT
Last active September 28, 2021 20:12
Show Gist options
  • Save CEZERT/c45b9a2d9c057275d4ac1d32a98b4b10 to your computer and use it in GitHub Desktop.
Save CEZERT/c45b9a2d9c057275d4ac1d32a98b4b10 to your computer and use it in GitHub Desktop.
liste1 = [100, 24, 'toto', '%']
liste2 = [89, 25, 'totol', '%*']
def meme(l1, l2):
for x in l1:
for j in l2:
if x==j:
return True
print(meme(liste1,liste2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment