To Concatenate Two Strings To A Third What Statements Are #228
To concatenate two strings to a third what statements are applicable?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Strings - Python Strings - Quiz No.2.
To concatenate two strings to a third what statements are applicable?
s3 = s1 . s2
s3 = s1.add(s2)
s3 = s1.__add__(s2)
s3 = s1 * s2