summaryrefslogtreecommitdiff
path: root/cs/6.0001 Introduction to Computer Science and Programming in Python.md
diff options
context:
space:
mode:
authormac <ra@afu.re>2025-10-28 16:16:36 -0400
committermac <ra@afu.re>2025-10-28 16:16:36 -0400
commit72e07c2ef26d9210ac7a07ff48bdaf38fe86472c (patch)
tree1883511265059c3498d637f1ceb940dbe339eab4 /cs/6.0001 Introduction to Computer Science and Programming in Python.md
parent15b1da3e3f7a9ff6b4e904cac045d90bcd84916f (diff)
Auto from mac asahi - Tue 28 Oct 2025 04:16:36 PM EDT
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.md2
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