Last active
September 28, 2021 20:12
-
-
Save CEZERT/c45b9a2d9c057275d4ac1d32a98b4b10 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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