Teilen Sie eine Textdatei in mehrere Absätze Python auf
txt = "welcome to the jungle"
x = txt.split("\n")
print(x)
Worrisome Wombat
txt = "welcome to the jungle"
x = txt.split("\n")
print(x)