✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche ce code ?
def anagramme(mot1,mot2):
n=len(mot1)
i=0
while i<n:
if mot1[i] not in mot2:
return False
i=i+1
return True
print(anagramme("niche","chien"))