153k views
4 votes
Given givenInput on one line and toAdd on a second line, assign

finalStr with the copy of givenInput with toAdd appended.
a) finalStr=toAdd+givenInput
b) finalStr=givenInput+toAdd
c) finalStr=givenInput−toAdd
d) finalStr=toAdd−givenInput

User Wulong
by
7.3k points

1 Answer

4 votes

Final answer:

The correct option is finalStr=givenInput+toAdd.

Step-by-step explanation:

The correct option is b) finalStr=givenInput+toAdd. To append toAdd to givenInput, we need to use the concatenation operator (+) in Python. The order in which we concatenate the strings depends on the desired final order of the characters in the output. In this case, we want to add toAdd at the end of givenInput, so we use the option b) to concatenate the strings.

User MEdwin
by
8.6k points