I want to be able to print the whole variable, or just detect it. If I run it through a for loop as I've done in the code below, it just prints the individual letters. How can it print the whole word?
Question = input()
Answer = input()
def test():
for words in Answer:
print(words)
test()