Created directories for the chapters

This commit is contained in:
2022-01-08 20:58:38 +01:00
parent aecb16fe01
commit f83d307a1e
59 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
a = [1, 2, 3, 4]
b = [5, 6, 7, 8]
for i in a:
print ("\n" + str(i))
for j in b:
print (" " + str(j))
if j == 6:
break