Question: 3. 3. Joining more strings (python) We will provide 2 strings to your program. Your job is to join the strings together so you get

3. 3. Joining more strings (python)

We will provide 2 strings to your program.

Your job is to join the strings together so you get a single string with a space between the 2 original strings.

This is a common case is coding and you will need to create your output by joining the inputs and adding the space in the middle. :

# Input from the command line import sys string1 = sys.argv[1] string2 = sys.argv[2]

# Write your code below

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!