20230926KOPM
x=10
y=4
if x > 5:
print("x is greater than 5")
else:
print("x is less than 5")
if y < 5:
print ("y is less than 5")
else:
print ("y is greater than 5")
z = [1,4,7,10]
if len(z) < 2:
print ("z is a long list")
else:
print ("z is a short list")INFO