Created
August 26, 2017 01:48
-
-
Save khayyamsaleem/6cea2af6f2ab80cf8cab9d4d5e25c59f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
spanish = ['envoltorio' , 'plazo', 'atisbo', 'manojo', 'costra'] | |
for w in spanish: | |
print w | |
if w == 'envoltorio': | |
print w + " is the chosen word" | |
break | |
else: | |
print 'Other words were not chosen!' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment