码迷,mamicode.com
首页 > 编程语言 > 详细

python 删除元组元素

时间:2018-11-12 23:59:51      阅读:910      评论:0      收藏:0      [点我收藏+]

标签:with   tuples   creat   mutable   ble   div   use   you   mmu   

 

#create a tuple
tuplex = "w", "j" ,"c", "e"
print(tuplex)
#tuples are immutable, so you can not remove elements
#using merge of tuples with the + operator you can remove an item and it will create a new tuple
tuplex = tuplex[:2] + tuplex[3:]
print(tuplex)
#converting the tuple to list
listx = list(tuplex)
#use different ways to remove an item of the list
listx.remove("e")
#converting the tuple to list
tuplex = tuple(listx)
print(tuplex)

 

python 删除元组元素

标签:with   tuples   creat   mutable   ble   div   use   you   mmu   

原文地址:https://www.cnblogs.com/sea-stream/p/9949512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!