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

11
kapitel7/sidan_103_ex1.py Normal file
View File

@@ -0,0 +1,11 @@
x = 10
y = 15
if ((x > 5) and (y < 10)):
print ("Jag kommer aldrig skrivas ut")
if ((x > 5) or (y < 10)):
print ("Däremot kommer jag att skrivas ut")
if ((x == 10) and (y > 12)):
print ("Jag kommer också att skrivas ut")