Introduction It joins two variable and placing into the strings format as requested in double or single quotes. Example 1 >>> a="pyhton" >>> b="lake" >>> a+b 'pyhtonlake' >>> Example 2 >>> >>> a+"lake" 'python lake' >>> Example 3 >>> >>> "Python "+"Lake" 'Python Lake' >>> |