The first option if the user enters the words himself:
word_first = input('Enter a word. ')
word_second = input('Enter a word. ')
print(word_first,word_second,sep=' ')
The second option is to display the source text:
print('Enter a word. Good','Enter a word. morning','Good morning',sep='\n')
Comments
Leave a comment