How to concatenate two strings in Python?
www.tutorialspoint.com › how-to-concatenate-twoMar 10, 2021 · Two strings can be concatenated in Python by simply using the ‘+’ operator between them. More than two strings can be concatenated using ‘+’ operator. Example Live Demo s1="Tutorials" s2="Point" s3=s1+s2 s4=s1+" "+s2 print(s3) print(s4) Output TutorialsPoint Tutorials Point Using % operator We can use the % operator to combine two string in Python.