Skip to content

Instantly share code, notes, and snippets.

View LoicH's full-sized avatar

Loïc H. LoicH

  • France
View GitHub Profile
@LoicH
LoicH / python.md
Last active December 11, 2017 22:18
Cheat sheets

break, continue, pass

break

Terminates the current loop and resumes execution at the next statement, just like the traditional break found in C.

continue

Returns the control to the beginning of the loop

pass

used when a statement is required syntactically but you do not want any command or code to execute