Created directories for the chapters
This commit is contained in:
11
kapitel7/sidan_103_ex1.py
Normal file
11
kapitel7/sidan_103_ex1.py
Normal 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")
|
||||
Reference in New Issue
Block a user