Skip to content

Commit 12858ea

Browse files
Update seventh.py
1 parent bd9441d commit 12858ea

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

week_6/seventh.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,9 @@
1111
print("The number is greater than 100.")
1212
else:
1313
print("The number is negative.")
14+
15+
16+
17+
for i in range(3): # Outer loop
18+
for j in range(2): # Inner loop
19+
print(f"i = {i}, j = {j}")

0 commit comments

Comments
 (0)