Question: 1 (2.5 pts.) Write Python code that prompts for a word until the user enters an empty word (i.e., gives a carriage return immediately at
1 (2.5 pts.) Write Python code that prompts for a word until the user enters an empty word (i.e., gives a carriage return immediately at the prompt). Then the code outputs a string containing all the words entered, in the order in which they were entered, separated by spaces. (It will make things easy if you have a space before the first word as well. The following is an example execution Enter a word: Good Enter a word: students Enter a word: work Enter a word: hard Enter a word: Good students work hard Use a while loop. Note that the empty string counts as False and so provides a way to exit the loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
