Articles → Python → Split Function In PythonSplit Function In PythonIn this article, we will discuss about split function in pythonPurpose Split function splits the string from the delimiter.Example message = "This, is, the, test, string" print( message.split(","))Once you run the program, you will get the following outputClick to EnlargePosted 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