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.
1234while condition: inctructions... else: instructions...
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.
Lösung
Danke für Ihr Feedback!
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Zusammenfassen Sie dieses Kapitel
Code in file erklären
Erklären, warum file die Aufgabe nicht löst
Awesome!
Completion rate improved to 6.25
Else
Swipe um das Menü anzuzeigen
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.
1234while condition: inctructions... else: instructions...
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.
Lösung
Danke für Ihr Feedback!
Awesome!
Completion rate improved to 6.25single