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
Get step-by-step solutions from verified subject matter experts
