Using continue
passes for the next iteration of the for loop
Using pass
just does nothing
So when using continue
the print
won’t happen (because the code continued to next iteration)
And when using pass
it will just end the if
peacefully (doing nothing actually) and do the print
as well