Computer Science, asked by officialritikgupta59, 19 days ago

write a program to concatenate two strings.​

Answers

Answered by Anonymous
9

Answer:

Python Concatenate Strings Using + The + operator lets you combine two or more strings in Python. This operator is referred to as the Python string concatenation operator. The + operator should appear between the two strings you want to merge.

Explanation:

Answered by mehtakhushbuhd
0
Concatenation is the process of appending one string to the end of another string. You concatenate strings by using the + operator. For string literals and string constants, concatenation occurs at compile time; no run-time concatenation occurs. The concatenation of strings is a process of combining two strings to form a single string. If there are two strings, then the second string is added at the end of the first string. For example, Hello + javaTpoint = Hello javaTpoint. There are two ways to do this:
Add double quotation marks with a space between them " ". For example: =CONCATENATE("Hello", " ", "World!").
Add a space after the Text argument. For example: =CONCATENATE("Hello ", "World!"). The string "Hello " has an extra space added.
Similar questions