cours_NSI/scripts/demo/demo3_corr.py

5 lines
157 B
Python
Raw Normal View History

2022-05-09 17:34:16 +02:00
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