The Continue statements is used to skip the rest code inside a loop the current iteration only.loop does not terminate but continues on with the next iteration,the following example of continue.
for val in "bharat":
if val == "r":
continue
print(val);
b
h
a
a
t