I have a string like this:
st = "The most basic data structure in Python is the sequence * Each element of a sequence is assigned a number * its position or index * The first index is zero * the second index is one * and so forth *"
and I want to split into the list like this:
ls =["The most basic data structure in Python is the sequence","Each element of a sequence is assigned a number","its position or index",.....]
I'm just started python, please help me