用于循环动态列表

时间:2016-09-12 16:09:56

标签: python python-3.x

我有for循环:

for i in range(1,len(L)):
   if i%2==0:
      L.remove(L[i])

我想,下面的代码有效:

var myResponse = [
     ["As", "12", "userPic-1473663782550.jpeg" ],
     ["Bs", "13", "userPic-1473663782628.jpeg"]
];


connection.query('INSERT INTO nodetable (name, age, imagePic) VALUES ?',
                 [myResponse], function(err, result)
{
   if (!err) { res.send(myResponse); }
   else { throw err; }           
});

我该怎么做? 非常感谢。

1 个答案:

答案 0 :(得分:0)

所以你甚至想要索引元素?理解是你的朋友。

lag()