continue

  • When used in for loops: Skips the current iteration and continue with the next one

  • When used in while loops: Returns to the start of the loop

  • break is used to end loops while return is used to end a function (and return a value).

pass

It is used to pass without doing anything