-
-
Save stevekrenzel/5199639 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
| pyg = 'ay' | |
| original = raw_input('Enter a word:') | |
| if len(original) > 0 and original.isalpha(): | |
| word = original.lower() | |
| first = word[0] | |
| if first == "a" or "e" or "i" or "o" or "u": | |
| print "vowel" | |
| else: | |
| print "consonant" | |
| else: | |
| print 'empty' |
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
| this is an edit. new revision. |
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
| pyg = 'ay' | |
| original = raw_input('Enter a word:') | |
| if len(original) > 0 and original.isalpha(): | |
| word = original.lower() | |
| first = word[0] | |
| if first == "a" or first == "e" or first == "i" or first == "o" or first == "u": | |
| print "vowel" | |
| else: | |
| print "consonant" | |
| else: | |
| print 'empty' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment