Lisez un fichier et divisez les mots Python

f = open("yourfile.txt", "r")

content = f.read()
words = content.split()

f.close()
Blyxyas