With this tuple

x = ('A','B','C')

you can get a tuple containing all but the first element using a slice:

x[1:]

Result:

('B','C')
Answer from khelwood on Stack Overflow
🌐
Data Science Parichay
datascienceparichay.com › home › blog › python – remove first element from tuple
Python - Remove First Element From Tuple - Data Science Parichay
February 6, 2022 - This will result in a new tuple with the first element removed. # create a tuple t = (1, 2, 3, 4, 5) # remove first element t = t[1:] print(t)
Discussions

python - Removing first elements of tuples in a list - Stack Overflow
I have a list of tuples as follows: values = [('1', 'hi', 'you'), ('2',' bye', 'bye')] However, the first element of each tuple is not needed. The desired output is: [('hi', 'you'), (' bye', 'bye'... More on stackoverflow.com
🌐 stackoverflow.com
July 11, 2017
pop/remove items out of a python tuple - Stack Overflow
I am not sure if I can make myself clear but will try. I have a tuple in python which I go through as follows (see code below). While going through it, I maintain a counter (let's call it 'n') and... More on stackoverflow.com
🌐 stackoverflow.com
python - How to remove the first instance of an element in a tuple? - Stack Overflow
So for example, I have a tuple: (7, 5, 3, 3, 6, 3, 9) and I would want to take out only the first number 3 in that tuple so that it would look like this instead: (7, 5, 3, 6, 3, 9) The code I've More on stackoverflow.com
🌐 stackoverflow.com
python - How to remove the first element from a list of tuples? - Stack Overflow
I have a list of tuples like so: x = [("a","b","c"), ("d","e","f"), ("g","h","i"), ("j","k&q... More on stackoverflow.com
🌐 stackoverflow.com
🌐
Quora
quora.com › What-is-the-easiest-way-to-remove-the-first-item-in-every-tuple-that-s-in-a-list-of-tuples-Python
What is the easiest way to remove the first item in every tuple that’s in a list of tuples Python? - Quora
Answer (1 of 2): Edited for clarity based on Adam Bielański’s comment. Because tuples are immutable, we can’t change the tuples in the original list, but we can generate a new list of tuples where each tuple in the list is a new tuple which excludes the first field of the original tuple: ...
🌐
Finxter
blog.finxter.com › home › learn python blog › 5 best ways to remove the first element from a python tuple
5 Best Ways to Remove the First Element from a Python Tuple - Be on the Right Side of Change
February 22, 2024 - The rest is then converted back to a tuple without the first element. While not as efficient or Pythonic as slicing, you can also remove the first element of a tuple by looping through it and building a new tuple with the elements you want to keep.
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-remove-given-character-from-first-element-of-tuple
Python - Remove given character from first element of Tuple - GeeksforGeeks
May 4, 2023 - Split each first element of a tuple by K and join by an empty string. Append the joined string and the second element of the tuple together as a tuple to output list. Display output list.
🌐
Devcamp
bottega.devcamp.com › full-stack-development-javascript-python › guide › three-ways-remove-elements-python-tuple
Three Ways to Remove Elements from a Python Tuple
I'm going to remove that second argument and here I'm just going to say 1. This assumes that you are wanting to only grab all of the elements after the first one so we're going to skip the first element here and then we're going to save all of the other tuple elements here inside of our new tuple. So if I run this you can see it starts with intro guide to python.
🌐
GeeksforGeeks
geeksforgeeks.org › python › removing-tuples-from-a-list-by-first-element-value-in-python
Removing Tuples from a List by First Element Value - Python - GeeksforGeeks
July 23, 2025 - In this method the lambda function checks whether the first element of the tuple is not equal to the specified value. ... li = [ ("GeeksforGeeks", "Python", 1000), ("GeeksforGeeks", "JavaScript", 1500), ("CodingForAll", "Java", 1200), ("GeeksforGeeks", "C++", 1300), ("CodeWars", "Python", 1100) ] # using filter and lambda to remove unwanted tuples li = list(filter(lambda x: x[0] != "GeeksforGeeks", li)) print(li)
🌐
Bobby Hadz
bobbyhadz.com › blog › python-tuple-remove-element
How to Remove an element from a Tuple in Python | bobbyhadz
April 9, 2024 - We used the list() class to convert the tuple to a list. The list.remove() method removes the first item from the list whose value is equal to the passed-in argument.
Find elsewhere
🌐
w3resource
w3resource.com › python-exercises › tuple › python-tuple-exercise-12.php
Python: Remove an item from a tuple - w3resource
July 5, 2025 - # To "remove" an item, create a new tuple by merging the desired elements using the + operator. tuplex = tuplex[:2] + tuplex[3:] # Print the updated 'tuplex' tuple print(tuplex) # Convert the 'tuplex' tuple to a list listx = list(tuplex) # Use ...
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-remove-first-occurrence-of-k-in-tuple
Python - Remove first occurrence of K in Tuple - GeeksforGeeks
April 24, 2023 - Initialize the original tuple and K. Use slicing to create two new tuples: one that includes all elements before the first occurrence of K, and one that includes all elements after the first occurrence of K. Concatenate the two new tuples using ...
🌐
GeeksforGeeks
geeksforgeeks.org › removing-tuples-from-a-list-by-first-element-value-in-python
Removing Tuples from a List by First Element Value – Python | GeeksforGeeks
January 29, 2025 - In this method the lambda function checks whether the first element of the tuple is not equal to the specified value. ... li = [ ("GeeksforGeeks", "Python", 1000), ("GeeksforGeeks", "JavaScript", 1500), ("CodingForAll", "Java", 1200), ("GeeksforGeeks", "C++", 1300), ("CodeWars", "Python", 1100) ] # using filter and lambda to remove unwanted tuples li = list(filter(lambda x: x[0] != "GeeksforGeeks", li)) print(li)
🌐
TutorialsPoint
tutorialspoint.com › How-to-pop-up-the-first-element-from-a-Python-tuple
How to pop-up the first element from a Python tuple?
February 20, 2020 - By definition, tuple object is immutable. Hence it is not possible to remove element from it. However, a workaround would be convert tuple to a list, remove desired element from list and convert it back to a tuple.
🌐
Quora
quora.com › How-do-I-delete-an-element-from-a-Python-tuple-function
How to delete an element from a Python tuple function - Quora
Answer (1 of 3): We can not directly remove or add any element from Tuples as we know, Tuples are immutable. Also unlike List, tuples don’t have functions like POP, REMOVE, APPEND or EXTEND. So if we want to remove any element from tuple, how can we do that??
🌐
IncludeHelp
includehelp.com › python › remove-given-character-from-the-first-element-of-tuple.aspx
Python program to remove given character from the first element of Tuple
August 24, 2021 - We will be discussing some of them clubbed with other methods to perform the required task. ... One way to find the solution is by using list comprehension to iterate over the list of tuples and then for the first element of each tuple, we will remove the character using replace() method.
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-remove-particular-element-from-tuple-list
Python | Remove particular element from tuple list - GeeksforGeeks
July 12, 2025 - First we Initialize the tuple list, ... be removed, N. Use the map() function and a lambda function to iterate over each tuple in the test_list and return a new tuple after filtering out the element N from it....
🌐
Studytonight
studytonight.com › post › python-how-to-remove-a-specific-element-from-a-list-of-tuples
How to remove a specific element from a list of tuples in Python? - Studytonight
March 23, 2023 - We hope this tutorial was helpful and welcome any suggestions or feedback you may have. Let us know your approach to solving this problem in the comments below! You can use the del keyword in Python to removethe first element.