w3resource

Python Exercise: Remove an empty tuple(s) from a list of tuples

Python tuple: Exercise-22 with Solution

Write a Python program to remove an empty tuple(s) from a list of tuples.

Visual Presentation:

Python Tuple: Remove an empty tuple(s) from a list of tuples.

Sample Solution:

Python Code:

# Create a list 'L' containing various elements, including empty tuples and tuples with strings.

# Use a list comprehension to filter out the empty tuples by checking if each tuple 't' in 'L' is not empty.
L = [(), (), ('',), ('a', 'b'), ('a', 'b', 'c'), ('d')]

# Print the modified list 'L' after removing the empty tuples.
L = [t for t in L if t]
print(L) 

Sample Output:

[('',), ('a', 'b'), ('a', 'b', 'c'), 'd']  

Flowchart:

Flowchart: Remove an empty tuple(s) from a list of tuples

Python Code Editor:

Previous: Write a Python program to replace last value of tuples in a list.
Next: Write a Python program to sort a tuple by its float element.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/tuple/python-tuple-exercise-22.php