diviser un fichier texte en plusieurs paragraphes Python
txt = "welcome to the jungle"
x = txt.split("\n")
print(x)
Worrisome Wombat
txt = "welcome to the jungle"
x = txt.split("\n")
print(x)