如何跳过光标中的一行。我用了next()但是我收到了一个错误。 这是我的代码:
for row in cursor:
if(...):
move to next line
else :
...
谢谢
答案 0 :(得分:1)
尝试这样的事情:
for row in cursor:
if (...):
continue
standard logic here....