Files
ola5doc/content/adrien_chacon/sources/tests/compteur.py
T

9 lines
145 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
sentence="azerty uiop"
words = sentence.split()
print (words)
for word in words:
print(len(word))