STRONA GLOWNA



WARUNKI IF

if warunek:
zrób coś
elif warunek:
tu też zrób coś
else:
ewent. zrób coś w takim przypadku

Przyklad


temp=input('Ile jest stopni? ')
if (temp<(-20)):
print 'Pozdrowienia dla pingwinow'
if (temp>=(-20) and temp<(-10)):
print 'Jest mrozno'
elif(temp>=(-10) and temp<=0):
print 'Jest zimno'
elif (temp>=20 and temp<30):
print 'Jest cieplo'
elif (temp>=30 and temp<=40):
print 'Jest upal'
elif (temp>40):
print 'MORDOR'
else:
print 'Jest nijak'