split a text file into multiple paragraphs python

Solutions on MaxInterview for split a text file into multiple paragraphs python by the best coders in the world

showing results for - "split a text file into multiple paragraphs python"
Carla
29 Jun 2017
1txt = "welcome to the jungle"
2
3x = txt.split("\n")
4
5print(x)