✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche ce code ?
def inconnu(lettre,mot):
n=len(mot)
for i in range(n):
if lettre==mot[i]:
return True
return False
mon_mot="trucbidulechouette"
ma_lettre="c"
print(inconnu(ma_lettre,mon_mot))