Files
grunderna-i-prog-tredje-utg…/kapitel7/if-ex5.py

7 lines
118 B
Python

x = 50
if (x > 20):
print(str(x) + " är större än 20")
if (x > 10):
print(str(x) + " är större än 10")