Created
May 9, 2019 08:14
-
-
Save ItsCosmas/0cbf18ff7cc1606f83cfffd2744ad012 to your computer and use it in GitHub Desktop.
For Loop Break
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FOR LOOP BREAK | |
fruits = ["apple", "banana", "cherry"] | |
for x in fruits: | |
if x == "banana": | |
break | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment