Flow Control: while, pass, break, continue: Revision history

From Master of Neuroscience Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 October 2025

15 October 2025

  • curprev 11:0111:01, 15 October 2025 Davrot talk contribs 2,389 bytes +2,389 Created page with " == The goal == While we wait… Questions to [mailto:davrot@uni-bremen.de David Rotermund] '''Logic blocks need to be indented.​ Preferable with 4 spaces!''' == [https://docs.python.org/3/reference/compound_stmts.html#the-while-statement The while statement] == <syntaxhighlight lang="python">i = 0​ while i < 3:​ print(i)​ i += 1</syntaxhighlight>Output<syntaxhighlight lang="python">0​ 1​ 2</syntaxhighlight> == The full statement == <syntaxhighlig..." Tag: Visual edit