+ 10
What is concatenation
6 Respostas
+ 8
concatenation -> combination
https://www.sololearn.com/Discuss/2490746/?ref=app
+ 6
Joining together of two strings or lists.
+ 5
String Concatenation is the technique of combining two strings. String Concatenation can be done using this 4 ways.
There are 4 ways to concatenation .
1. Using + operator (a + b)
2. Join method (' '.join([a, b]))
3. Using % operator ("% s % s" % (a, b))
4. Using format method "{} {}".format(a, b)
+ 3
Adding two strings together
+ 2
Adding or joining of two strings together is concantation.
0
Its is the addition of two strings. For instance:
print("Hello " + "Seg")
The ouput will be:
Hello Seg