How to remove a tuple from a list of tuples in Python

2 Answers

0 votes
list_of_tuples = [(1, 2), (3, 4), (5, 6), (7, 8)]
 
del list_of_tuples[1]
 
print(list_of_tuples)  
 
 
 
 
'''
run:
 
[(1, 2), (5, 6), (7, 8)]
 
'''

 



answered Jul 8, 2022 by avibootz
0 votes
list_of_tuples = [(1, 2), (3, 4), (5, 6), (7, 8)]
 
list_of_tuples.remove((3, 4))
 
print(list_of_tuples)  
 
 
 
 
'''
run:
 
[(1, 2), (5, 6), (7, 8)]
 
'''

 



answered Jul 8, 2022 by avibootz

Related questions

2 answers 299 views
...