Created
May 9, 2019 08:16
-
-
Save ItsCosmas/6729a06044511adb173594f21501e7cc to your computer and use it in GitHub Desktop.
For Loop Continue
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 CONTINUE | |
fruits = ["apple", "banana", "cherry"] | |
for x in fruits: | |
if x == "banana": | |
continue | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment