我有两个用Python打开的json文件。我想做一些事情,如果一个条件不满足,我可以跳过当前元素并继续下一个。我的代码如下所示:
t_a = first json file
t = second json file
for token in t_a
if token in t
#do something
if token not in t
#skip the current token and move on to the next one
我的问题在于最后一步。我是python的新手,我不知道如何跳过当前元素
答案 0 :(得分:3)
只需使用continue
:
t_a = first json file
t = second json file
for token in t_a
if token in t:
#do something
else:
#skip the current token and move on to the next one
continue
#do something else here