diff options
Diffstat (limited to 'cs/6.0001 Introduction to Computer Science and Programming in Python.md')
| -rw-r--r-- | cs/6.0001 Introduction to Computer Science and Programming in Python.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/6.0001 Introduction to Computer Science and Programming in Python.md b/cs/6.0001 Introduction to Computer Science and Programming in Python.md index 3b37042..469b455 100644 --- a/cs/6.0001 Introduction to Computer Science and Programming in Python.md +++ b/cs/6.0001 Introduction to Computer Science and Programming in Python.md @@ -138,7 +138,7 @@ f"The area of a circle with radius {sum(radius)} is {math.pi * radius}" - for - Iterate over a sequence - while - Repeat a block of code as long as condition is true -# Control statement +## Control statement - break - exit current loop - continue - skip rest of current iteration and follow to the next iteration in loop - pass - null does nothing |
