You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
675 B
30 lines
675 B
|
|
# gleich
|
|
print('10 == 10 ist '+ str(10 == 10)) # liefert True
|
|
print ('10 == 11 ist ' + str(10 == 11)) # liefert False
|
|
|
|
# groesser
|
|
print('----')
|
|
print('11 > 10 ist ' + str(11 > 10)) # liefert True
|
|
print('10 > 11 ist ' + str(10 > 11)) # liefert False
|
|
|
|
# groesser gleich
|
|
|
|
print('----')
|
|
print('10 >= 10 ist ' + str(10 >= 10)) # liefert True
|
|
print('10 >= 11 ist ' + str(10 >= 11)) # liefert False
|
|
|
|
#kleiner gleich
|
|
|
|
print('----')
|
|
print('10 <= 10 ist ' + str(10 <= 10)) # liefert True
|
|
print('11 <= 10 ist ' + str(11 <= 10)) # liefert False
|
|
|
|
# ungleich
|
|
|
|
print('----')
|
|
print('10 != 11 ist ' + str(10 != 11)) # liefert True
|
|
print('10 != 10 ist ' + str(10 != 10)) # liefert False
|
|
|
|
|
|
|
|
|