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
| print "Welcome to the English to Pig Latin translator!" | |
| original = raw_input("Enter a word") | |
| if len("original") > 0: | |
| print original | |
| 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
| def the_flying_circus(): | |
| if (2==2) is False: | |
| print "Horray" | |
| elif False: | |
| print "fuck" | |
| else: | |
| return True |