Computer Science, asked by montikansal1911, 11 months ago

Answers to code practice 1.7 on edhesive. Says "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.

Answers

Answered by nidaeamann
0

Answer:

A basic version in Python would be;

string_one = input('Please, enter first word: ')

String_two = input('Please, enter second word: ')

print('{} {}'.format(string_one, string_two))

Explanation:

This program is deveopled in python;

string_one = input('Please, enter first word: ')

String_two = input('Please, enter second word: ')

print('{} {}'.format(string_one, string_two))

Output:

Please, enter first word: Test

Please, enter second word: Bench

Test bench

Similar questions