cours_NSI/scripts/demo/demo3_corr.py
2022-05-09 17:34:16 +02:00

5 lines
157 B
Python

adage = "Mon chien est beau."
def nombre_mots(phrase: str) -> int:
tableau_mots = phrase.split(' ')
return len(tableau_mots) if len(phrase)>0 else 0