Programming Examples
Write a Python program to remove empty strings from the list of strings.
Write a Python program to remove empty strings from the list of strings.
If input is: list1 = [“DL”, “”, “TN”, “TL”, “”, “KK”]
then output is: [“DL”, “TN”, “TL”, “KK”]
Solutionlist1 = ["DL", "", "TN", "TL", "", "KK"]
# Remove all empty strings
while "" in list1:
list1.remove("")
# Display the result
print("Updated List:", list1)
Output