有谁知道我如何从元组方括号中删除一些值。
我有类似的东西
def fun:
val1=re.findall(pattern1, html_stuff)
val2=re.findall(pattern2, html_stuff)
return val1,val2
mylist=fun()
print mylist[0]
print mylist[1]
这将返回
['stuff']
['more stuff']
我不知道如何从 [] 中删除“东西”
我正在建立一个新的元组
new_tup.append((id,name, my_list[0],my_list[1]))
输出看起来像
('99', 'Event', ['5/03/2000'] ,['150'])
我希望它看起来像
('99', 'Event', '5/03/2000', '150')
或者我可以坚持使用 sqlite 的东西
c.executemany('INSERT INTO events (id, name, date, cat) VALUES (?,?,?,?,?)', new_tup)