This way you can split your string into array.
x = ["My Name is Sona","I live in India"]
z = []
for i in x:
# Replacing "," , converting to lower and then splitting
z.append(i.replace(","," ").lower().split())
print z
Output:
[['My','name','is','Sona'],['I','live','in','India']]