Articles → Python → Split Function In PythonSplit Function In PythonIn this article, we will discuss the split function in Python.Purpose The split function splits the string from the delimiter.Example message = "This, is, the, test, string" print( message.split(","))Output Posted By - Karan Gupta Posted On - Monday, February 25, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
message = "This, is, the, test, string" print( message.split(","))
Query/Feedback