Computer Science
Can you add two strings? What effect does ' + ' have on strings?
Python String Manipulation
12 Likes
Answer
Yes two strings can be added using the '+' operator. '+' operator concatenates two strings.
Answered By
9 Likes
Related Questions
In a string slice, the start and end values can be beyond limits. Why?
Can you specify an out of bound index when accessing a single character from a string? Why?
What is the result of the following expression?
print(""" 1 2 3 """)
What is the result of the following expression?
text = "Test.\nNext line." print (text)