Börjat lägga till kodexempel

This commit is contained in:
2024-02-03 16:32:45 +01:00
commit dcd905737e
30 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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