Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 4, 2018 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/bbda09f7a6c39477ae66df6628b43d5e to your computer and use it in GitHub Desktop.
Save codecademydev/bbda09f7a6c39477ae66df6628b43d5e to your computer and use it in GitHub Desktop.
Codecademy export
def print_letters(string):
count = 0
newstring = []
while count <= len(string):
m = string[count]
#n = string[len(string)-2*count]
count +=1
print m
#print n
#newstring.append(n)
#.join(newstring)
#return newstring
print_letters("blanks")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment