Question: Write a Python program that performs the following tasks: (1) Create a variable string1 and initialize it with string literal 111 . (2) Create another
Write a Python program that performs the following tasks:
- (1) Create a variable string1 and initialize it with string literal 111.
- (2) Create another variable string2 and initialize it with string literal 222.
- (3) Concatenate string1 to the back of string2, then print out the combined string.
Note that the + operator must be used for string concatenation.

Combined String: 222111
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
