combine two strings in Python
combine two strings in Python
string concatenation means adding two string and it can be done with the help of “+” operator in Python. with the help of an example it will be more clear so let’s see an exapmle of it.
Example :-
- x="How"
- y="are you?"
- print(x+y)
Comments
Post a Comment