gistlib
main.pyword = "hello" for letter in word: print(letter, end="") 61 chars4 lines
word = "hello" for letter in word: print(letter, end="")
Output: hello 14 chars3 lines
Output: hello
gistlibby LogSnag