这是我的元组模式:
(name, age, weight)
UserList = (('steve', 17, 178), ('Mike', 19, 178),('Pull', 24, 200),('Adam', 15, 154))
我想检查年龄是否小于 18 我想用 ( , , ) 替换该用户的元组
所以最终结果看起来像
(('', , ), ('Mike', 19, 178),('Pull', 24, 200),('', , ))
我试过了
UserList = list(UserList)
for i,e in enumerate(UserList):
if e[1] < 18:
temp=list(UserList[i])
for f, tmp in enumerate(temp):
del temp[:]
但它没有用,任何想法或建议将不胜感激。谢谢!