11 lines
188 B
Python
11 lines
188 B
Python
# coding=utf-8
|
|
|
|
zahl = 99
|
|
|
|
if zahl == 100:
|
|
print ('Zahl ist einhundert.')
|
|
elif zahl > 100:
|
|
print('Zahl ist grösser als einhundert.')
|
|
else:
|
|
print('Zahl ist kleiner als einhundert.')
|