You can specify the separator, default separator is any whitespace. For it use the list() function to split a word into a list of letters in Python. Python Split String by New Line - Python Examples Let's pass a parameter separator to the ⦠How to Split a String in Python So when a string assigned to any variable and after applying a split() ⦠⦠split() takes two arguments, the first is the separator (delimiter) to split the string by ⦠Method 1: split string into characters python using UDF. Python program to convert string into list using list() function . Convert a string representation of list into list in Python Use the maxsplit argument to limit the number of splits. Python 3 Examples How to Split String into List Python is easy. The string split() is a built-in Python function that splits the string into the list. When using negative index numbers, weâll start with the lower number first as it occurs earlier in the string. The delimiter can be a character or sequence of characters, not a regular expression. Split a String In Python : 2 Methods and Code Tweaks The split () is an inbuilt method that returns a list of lines after breaking the given string by the specified separator. What is Substring in Python and How