Write a program to add two strings without utilizing “+” operator ?
Answers
Answered by
0
#Python
a = input("first string")
b = input("second string")
string = "{0} {1}".format(a,b)
print(string)
Similar questions
Social Sciences,
5 months ago
Biology,
5 months ago
Computer Science,
5 months ago
Math,
10 months ago
English,
10 months ago
English,
1 year ago