Advertisement
ChocaGod

Untitled

Feb 23rd, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #Compteur de neufs
  2. def compteur_neuf(choix):
  3. resultat = 0
  4. for nb_neuf in choix:
  5. if nb_neuf == 9:
  6. resultat = resultat+1
  7.  
  8. return resultat
  9.  
  10.  
  11.  
  12. choix = input("Entrez votre choix içi")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement