""" Purpose: introduce lists and looping """ # Get string of choice reply = input( "Enter text: " ) # Convert text into a list of words ... # Display list of words print() print( "words: ", words ) print() # Print words one by one ...