Si trouvé, arrêtez la boucle Python

for letter in 'Python':     # First Example
   if letter == 'h':
      break
Sachin