filmov
tv
Remove an Item from a Tuple in Python (Convert into List) - Python Tutorial for Beginners
![preview_player](https://i.ytimg.com/vi/9Ac72mDpNtM/maxresdefault.jpg)
Показать описание
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z!
🖥️ Remove an Item from a Tuple in Python (Convert into List)
Tuples cannot be modified, because they are immutable. So, obviously, you cannot directly delete any item, either. But, the same way you did to update an item, you can: convert the tuple into a list, delete an item, then convert the list back into a tuple. And if you don't need your tuple anymore, you can completely delete the tuple itself using the del keyword.
my_tuple = ('red', 'green', 'blue') # my_tuple = ('red', 'green', 'blue')
my_tuple = list(my_tuple) # my_tuple = ['red', 'green', 'blue']
del my_tuple[0] # my_tuple = [green', 'blue']
my_tuple = tuple(my_tuple) # my_tuple = ('green', 'blue')
del my_tuple
Let's play this video, stick around and watch until the end of this video! 👍🏻
- Digital Academy™ 🎓
***
☞ WATCH NEXT:
#Python #Tutorial #Beginners #Shorts
***
♡ Thanks for watching and supporting ♡
Please Subscribe. Hit the notification bell.
Like, Comment and Share.
***
♡ FOLLOW US ♡
♡ SUPPORT US ♡
***
🖥️ Remove an Item from a Tuple in Python (Convert into List)
Tuples cannot be modified, because they are immutable. So, obviously, you cannot directly delete any item, either. But, the same way you did to update an item, you can: convert the tuple into a list, delete an item, then convert the list back into a tuple. And if you don't need your tuple anymore, you can completely delete the tuple itself using the del keyword.
my_tuple = ('red', 'green', 'blue') # my_tuple = ('red', 'green', 'blue')
my_tuple = list(my_tuple) # my_tuple = ['red', 'green', 'blue']
del my_tuple[0] # my_tuple = [green', 'blue']
my_tuple = tuple(my_tuple) # my_tuple = ('green', 'blue')
del my_tuple
Let's play this video, stick around and watch until the end of this video! 👍🏻
- Digital Academy™ 🎓
***
☞ WATCH NEXT:
#Python #Tutorial #Beginners #Shorts
***
♡ Thanks for watching and supporting ♡
Please Subscribe. Hit the notification bell.
Like, Comment and Share.
***
♡ FOLLOW US ♡
♡ SUPPORT US ♡
***