string_1="Let us convert string to list"
print(string_1.split(" "))# Here we specified " " as delimiter
#Based on the specified delimiter the list string will be sepatrated
string_2="Let*us*convert*string to*list"
print(string_2.split())#By default delimiter is space " "
print(string_2.split("*"))#Here we specified * as the delimiter