Created
December 3, 2014 12:12
-
-
Save jonaslsaa/15cd87c14edba4cb7cf8 to your computer and use it in GitHub Desktop.
Divides words.
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
#letter dividing | |
canRun=1 | |
while canRun == 1: | |
word=raw_input("Type in a word: ") | |
for letter in word: | |
print("Current letter: " + letter) | |
print(" ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment