I=input().replace(" ","\n").split("\n")
J=I
for p in range(len(I)):
if J[p]='\n'
delete J[p]
print("This list may have empty lines")
print(I)
print"It has an absence of empty lines"
print(J)
It replaces spaces with lines.
It removes an element based on the position and not the value.
It shows us the result without filtering.
It again represents the list with filters applied.