You can join two or more strings to form a new string using the concatenation operator +. Here is an example:
>>> "sony" + " biswas" + " nitol"
'sony biswas nitol'
plus (+) sign use for concatenate two or more string
>>> "sony" + " biswas" + " nitol"
'sony biswas nitol'
plus (+) sign use for concatenate two or more string