Else
else
can be used not only inside if-else statements but after loops. Instructions after else
statement are executing after exiting the loop but not because of break
. If you leave the loop because of break
, else
instructions are skipped.
while condition: inctructions... else: instructions...
Taak
Swipe to start coding
For the given list list_
, check if all elements in it are positive. Print YES or NO. Use break
to leave the loop if a non-positive number appears.
Oplossing
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 2. Hoofdstuk 5