Lesson 11 a : Functions
Post date: Jan 11, 2018 3:28:52 PM
def listup(word):
for x in word:
print(x)
word3 = input("Give me a word:")
listup(word3)
word2 = input("Give me a word:")
listup(word2)
listup(word2)
Post date: Jan 11, 2018 3:28:52 PM
def listup(word):
for x in word:
print(x)
word3 = input("Give me a word:")
listup(word3)
word2 = input("Give me a word:")
listup(word2)
listup(word2)