Skip to content

Instantly share code, notes, and snippets.

@jonaslsaa
Created December 3, 2014 12:12
Show Gist options
  • Save jonaslsaa/15cd87c14edba4cb7cf8 to your computer and use it in GitHub Desktop.
Save jonaslsaa/15cd87c14edba4cb7cf8 to your computer and use it in GitHub Desktop.
Divides words.
#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