Python program to Concatenate Strings

print("Enter the First String: ")
strOne = input()
print("Enter the Second String: ")
strTwo = input()
strThree = strOne + strTwo
print("\nConcatenated String: ", strThree)

OUTPUT:

Enter the First String:
CHASE2
Enter the Second String:
LEARN
Concatenated String:  CHASE2LEARN

Sharing Is Caring

Leave a Comment