print words on a line "hi there my friend" hi there my friend =============== read in the line split it into words print the words =============== read in the input as a string at each space, split the line into a list print the list element by element ================ line = input("Your line?> ") linelist = line.split(" ") for i in linelist: print(i)