lst = [(32,(4,5)),(55,(5,6))]
Given a tuple (4,5), so I want to remove the first tuple in lst. How to do that?
Sorry, this wasn’t clear, what I mean is remove the list item by the second item in each list item
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Removes ALL (4, 5) tuples, not just the first instance.