Question: We pass in 2 strings, name1 and name2. You should output another string in the format name1's done and name2's done with a new line
We pass in 2 strings, name1 and name2. You should output another string in the format name1's done and name2's done with a new line between the two and where name1 and name2 are replaced with the input string # Input from the command line import sys name1 = sys.argv[1] name2 = sys.argv[2] Expected Output: 1's done and 2's done
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
