16.4k views
15 votes
So i am taking to edhesive computer science course in my school, and i am confused on 1.6 code practice,

here are the intructions, it is also for the python coding language

Write a program that uses two input statements to get two words as input. Then, print the words on one line separated by a space. Your program's output should only include the two words and a space between them.

Hint: To print both words on one line, remember that you can concatenate (add) two phrases by using the + symbol. Don't forget that you'll need to add a space between the words as well.

Sample Run

Enter a word: Good
Enter a word: morning
Good morning

1 Answer

2 votes

I included my code in the picture below. Best of luck.

So i am taking to edhesive computer science course in my school, and i am confused-example-1
User Bobthyasian
by
4.1k points