Python Program to concatenate two strings (Using + operator)

bookmark

# Python program to show  
# string concatenation  
  
# Defining strings  
str1 = "Hello "  
str2 = "Devansh"  
  
# + Operator is used to strings concatenation  
str3 = str1 + str2  
print(str3)   # Printing the new combined string  


Output:

Hello Devansh